Returns a new line chart by interpolating over the given function.

Namespace:  CenterSpace.NMath.Charting.Microsoft
Assembly:  NMathChartMicrosoft (in NMathChartMicrosoft.dll) Version: 5.1.0.0

Syntax

C#
public static Chart ToChart(
	ClampedCubicSpline f,
	double xmin,
	double xmax,
	int numInterpolatedValues
)
Visual Basic (Declaration)
Public Shared Function ToChart ( _
	f As ClampedCubicSpline, _
	xmin As Double, _
	xmax As Double, _
	numInterpolatedValues As Integer _
) As Chart
Visual C++
public:
static Chart^ ToChart(
	ClampedCubicSpline^ f, 
	double xmin, 
	double xmax, 
	int numInterpolatedValues
)

Parameters

f
Type: CenterSpace.NMath.Core..::.ClampedCubicSpline
The function.
xmin
Type: System..::.Double
The starting x value.
xmax
Type: System..::.Double
The ending x value.
numInterpolatedValues
Type: System..::.Int32
The number of interpolated values.

Return Value

A new chart.

See Also