Constructs the tension-continuity-bias (TCB) cubic spline interpolant to the given
data points.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public CsTCB(
double[] xData,
double[] yData
)
Public Sub New (
xData As Double(),
yData As Double()
)
public:
CsTCB(
array<double>^ xData,
array<double>^ yData
)
new :
xData : float[] *
yData : float[] -> CsTCB
Parameters
- xData
- Type: SystemDouble
A double array containing the x-coordinates of the data.
- yData
- Type: SystemDouble
A double array containing the y-coordinates of the data.
Remarks Values must be distinct. xData and yData must
be of the same length.
See Also