Click or drag to resize
CsAkima Constructor
Constructs the Akima cubic spline interpolant to the given data points.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public CsAkima(
	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.
Exceptions
ExceptionCondition
ArgumentException is thrown if the arrays xData and yData do not have the same length
See Also