srtree-2.0.0.0: A general library to work with Symbolic Regression expression trees.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Algorithm.Massiv.Utils

Synopsis

Documentation

data NegDef #

Constructors

NegDef 

Instances

Instances details
Exception NegDef # 
Instance details

Defined in Algorithm.Massiv.Utils

Show NegDef # 
Instance details

Defined in Algorithm.Massiv.Utils

cubicSplineCoefficients :: [(Double, Double)] -> [PolyCos] #

Given a list of (x,y) co-ordinates, produces a list of coefficients to cubic equations, with knots at each of the initially provided x co-ordinates. Natural cubic spline interpololation is used. See: http://en.wikipedia.org/wiki/Spline_interpolation#Interpolation_using_natural_cubic_spline.

chunkBy :: Int -> [t] -> [[t]] #