Constructs the Akima cubic spline interpolant to the given data
points.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic CsAkima(
double[] xData,
double[] yData
)
Public Sub New (
xData As Double(),
yData As Double()
)
public:
CsAkima(
array<double>^ xData,
array<double>^ yData
)
new :
xData : float[] *
yData : float[] -> CsAkimaParameters
- 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| Exception | Condition |
|---|
| ArgumentException |
is thrown if the arrays xData and yData do not have
the same length
|
See Also