Interpolates the spline

Namespace:  GLSV
Assembly:  GLSV (in GLSV.dll) Version: 1.2009.6.26 (1.2009.06.26)

Syntax

C#
public void splint(
	float[] xa,
	float[] ya,
	float[] y2a,
	int n,
	float x,
	ref float y
)
Visual Basic (Declaration)
Public Sub splint ( _
	xa As Single(), _
	ya As Single(), _
	y2a As Single(), _
	n As Integer, _
	x As Single, _
	ByRef y As Single _
)
Visual C++
public:
void splint(
	array<float>^ xa, 
	array<float>^ ya, 
	array<float>^ y2a, 
	int n, 
	float x, 
	float% y
)

Parameters

xa
Type: array< System..::.Single >[]()[]
XA vector
ya
Type: array< System..::.Single >[]()[]
YA vector
y2a
Type: array< System..::.Single >[]()[]
Y2A vector
n
Type: System..::.Int32
Integer n
x
Type: System..::.Single
Float x
y
Type: System..::.Single %
Float y

See Also