IMSL C# Numerical Library

CsPeriodic Constructor 

Constructs a cubic spline that interpolates the given data points with periodic boundary conditions.

public CsPeriodic(
   double[] xData,
   double[] yData
);

Parameters

xData
A double array containing the x-coordinates of the data. There must be at least 4 data points and values must be distinct.
yData
A double array containing the y-coordinates of the data. The arrays xData and yData must have the same length.

See Also

CsPeriodic Class | Imsl.Math Namespace