srtree-2.0.0.2: A general library to work with Symbolic Regression expression trees.
Safe HaskellNone
LanguageHaskell2010

Algorithm.Massiv.Utils

Synopsis

Documentation

data NegDef Source #

Constructors

NegDef 

Instances

Instances details
Exception NegDef Source # 
Instance details

Defined in Algorithm.Massiv.Utils

Show NegDef Source # 
Instance details

Defined in Algorithm.Massiv.Utils

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

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]] Source #