-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Natural cubic spline interpolation.
--   
--   Natural cubic spline interpolation.
@package cubicspline
@version 0.1.2

module Data.Algorithm.CubicSpline

-- | 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:
--   <a>http://en.wikipedia.org/wiki/Spline_interpolation#Interpolation_using_natural_cubic_spline</a>.
cubicSplineCoefficients :: [(Double, Double)] -> [PolyCos]
