VectorSpline(Double, Double, Int32, FuncDouble, Double) Constructor

Creates a spline approximating a function in a given interval.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public VectorSpline(
	double x0,
	double x1,
	int segments,
	Func<double, double> f
)

Parameters

x0  Double
Lower interval bound.
x1  Double
Upper interval bound.
segments  Int32
Number of segments in the interval.
f  FuncDouble, Double
The function to be approximated.

See Also