Click or drag to resize
CsShape Constructor
Construct a cubic spline interpolant which is consistent with the concavity of the data.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public CsShape(
	double[] xData,
	double[] yData
)

Parameters

xData
Type: SystemDouble
A double array containing the x-coordinates of the data. 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.
Exceptions
ExceptionCondition
TooManyIterationsException is thrown if the iteration did not converge.
SingularMatrixException is thrown if matrix is singular.
See Also