Constructs a cubic spline that interpolates the given data points
with periodic boundary conditions.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public CsPeriodic(
double[] xData,
double[] yData
)
Public Sub New (
xData As Double(),
yData As Double()
)
public:
CsPeriodic(
array<double>^ xData,
array<double>^ yData
)
new :
xData : float[] *
yData : float[] -> CsPeriodic
Parameters
- xData
- Type: SystemDouble
A double array containing the x-coordinates of the data. There
must be at least 4 data points and values must be distinct.
- yData
- Type: SystemDouble
A double array containing the y-coordinates of the data. The
arrays xData and yData must have the same length.
See Also