Shows a new chart in a default form.
Namespace:
CenterSpace.NMath.Charting.MicrosoftAssembly: NMathChartMicrosoft (in NMathChartMicrosoft.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static void Show( NMathFunctions..::.DoubleUnaryFunction f, double xmin, double xmax, int numInterpolatedValues ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub Show ( _ f As NMathFunctions..::.DoubleUnaryFunction, _ xmin As Double, _ xmax As Double, _ numInterpolatedValues As Integer _ ) |
| Visual C++ |
|---|
public: static void Show( NMathFunctions..::.DoubleUnaryFunction^ f, double xmin, double xmax, int numInterpolatedValues ) |
Parameters
- f
- Type: CenterSpace.NMath.Core..::.NMathFunctions..::.DoubleUnaryFunction
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.
Remarks
Equivalent to:
CopyC#
NMathChart.Show( ToChart( f, xmin, ymin, numInterpolatedValues ) );