Creates a spline

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

Syntax

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

Parameters

x
Type: array< System..::.Single >[]()[]
X vector
y
Type: array< System..::.Single >[]()[]
Y vector
n
Type: System..::.Int32
Integer n
yp1
Type: System..::.Single
YP1 vector
ypn
Type: System..::.Single
YPN vector
y2
Type: array< System..::.Single >[]()[] %
Y2 vector

See Also