Shows a new chart in a default form.

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

Syntax

C#
public static void Show(
	ClampedCubicSpline f,
	int numInterpolatedValues
)
Visual Basic (Declaration)
Public Shared Sub Show ( _
	f As ClampedCubicSpline, _
	numInterpolatedValues As Integer _
)
Visual C++
public:
static void Show(
	ClampedCubicSpline^ f, 
	int numInterpolatedValues
)

Parameters

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

Remarks

Equivalent to:
CopyC#
NMathChart.Show( ToChart( f, numInterpolatedValues ) );

See Also