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,
	int numInterpolatedValues
)
Visual Basic (Declaration)
Public Shared Function ToChart ( _
	f As ClampedCubicSpline, _
	numInterpolatedValues As Integer _
) As Chart
Visual C++
public:
static Chart^ ToChart(
	ClampedCubicSpline^ f, 
	int numInterpolatedValues
)

Parameters

f
Type: CenterSpace.NMath.Core..::.ClampedCubicSpline
The function.
numInterpolatedValues
Type: System..::.Int32
The number of interpolated values.

Return Value

A new chart.

See Also