hmatrix-gsl-stats 0.4.1.5 → 0.4.1.6
raw patch · 3 files changed
+9/−3 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Numeric.GSL.Statistics: absdev :: Vector Double -> Double
+ Numeric.GSL.Statistics: absdev_m :: Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: absdev_w :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: absdev_w_m :: Double -> Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: correlation :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: covariance :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: covariance_m :: Double -> Double -> Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: kurtosis :: Vector Double -> Double
+ Numeric.GSL.Statistics: kurtosis_m_sd :: Double -> Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: kurtosis_w :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: kurtosis_w_m_sd :: Double -> Double -> Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: lag1auto :: Vector Double -> Double
+ Numeric.GSL.Statistics: mean :: Vector Double -> Double
+ Numeric.GSL.Statistics: mean_w :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: median :: Vector Double -> Double
+ Numeric.GSL.Statistics: quantile :: Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: skew :: Vector Double -> Double
+ Numeric.GSL.Statistics: skew_m_sd :: Double -> Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: skew_w :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: skew_w_m_sd :: Double -> Double -> Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: stddev :: Vector Double -> Double
+ Numeric.GSL.Statistics: stddev_m :: Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: stddev_pm :: Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: stddev_w :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: stddev_w_m :: Double -> Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: stddev_w_pm :: Double -> Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: tot_sumsq :: Vector Double -> Double
+ Numeric.GSL.Statistics: tot_sumsq_m :: Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: tot_sumsq_w :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: tot_sumsq_w_m :: Double -> Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: variance :: Vector Double -> Double
+ Numeric.GSL.Statistics: variance_m :: Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: variance_pm :: Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: variance_w :: Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: variance_w_m :: Double -> Vector Double -> Vector Double -> Double
+ Numeric.GSL.Statistics: variance_w_pm :: Double -> Vector Double -> Vector Double -> Double
Files
- CHANGES +6/−0
- hmatrix-gsl-stats.cabal +1/−1
- lib/Numeric/GSL/Statistics.hs +2/−2
CHANGES view
@@ -107,3 +107,9 @@ 0.4.1.4: set upper bound for hmatrix so it complies (changes in hmatrix 0.18)++0.4.1.5:+ update for hmatrix 0.18++0.4.1.6:+ uncommented statistics functions (woops!)
hmatrix-gsl-stats.cabal view
@@ -1,5 +1,5 @@ Name: hmatrix-gsl-stats-Version: 0.4.1.5+Version: 0.4.1.6 License: BSD3 License-file: LICENSE Copyright: (c) A.V.H. McPhail 2010, 2011, 2013, 2015, 2016
lib/Numeric/GSL/Statistics.hs view
@@ -16,7 +16,7 @@ ----------------------------------------------------------------------------- module Numeric.GSL.Statistics (-{- mean+ mean , variance,variance_m,variance_pm , stddev,stddev_m,stddev_pm , tot_sumsq,tot_sumsq_m@@ -37,7 +37,7 @@ , correlation -- , median, quantile--} ) where+ ) where -----------------------------------------------------------------------------