TMatrixbuildakimaspline Method
Building the Akima spline coefficient table.
Namespace: SMath.Math.NumericAssembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.67.9018.0
public void buildakimaspline(
double[] x,
double[] y,
int n,
out double[] c
)
Public Sub buildakimaspline (
x As Double(),
y As Double(),
n As Integer,
<OutAttribute> ByRef c As Double()
)
public:
void buildakimaspline(
array<double>^ x,
array<double>^ y,
int n,
[OutAttribute] array<double>^% c
)
member buildakimaspline :
x : float[] *
y : float[] *
n : int *
c : float[] byref -> unit
Parameters
- x Double
-
Abscisses, array with numbering of elements [0..N-1].
- y Double
-
Function values, array with element numbering [0..N-1].
- n Int32
-
Number of points, N>=5.
- c Double
-
Table of spline coefficients for use in the SplineInterpolation subroutine.