TMatrixbuildakimaspline Method

Building the Akima spline coefficient table.

Definition

Namespace: SMath.Math.Numeric
Assembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.67.9018.0
C#
public void buildakimaspline(
	double[] x,
	double[] y,
	int n,
	out double[] c
)

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.

See Also