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<M>( OneVariableFunctionFitter<M> ovf, DoubleVector x, DoubleVector y, DoubleVector solution, int numInterpolatedValues ) where M : new(), INonlinearLeastSqMinimizer |
| Visual Basic (Declaration) |
|---|
Public Shared Sub Show(Of M As {New, INonlinearLeastSqMinimizer}) ( _ ovf As OneVariableFunctionFitter(Of M), _ x As DoubleVector, _ y As DoubleVector, _ solution As DoubleVector, _ numInterpolatedValues As Integer _ ) |
| Visual C++ |
|---|
public: generic<typename M> where M : gcnew(), INonlinearLeastSqMinimizer static void Show( OneVariableFunctionFitter<M>^ ovf, DoubleVector^ x, DoubleVector^ y, DoubleVector^ solution, int numInterpolatedValues ) |
Parameters
- ovf
- Type: CenterSpace.NMath.Analysis..::.OneVariableFunctionFitter<(Of <(M>)>)
A OneVariableFunctionFitter object containing a least squares fit of a parameterized function to the given x,y values.
- x
- Type: CenterSpace.NMath.Core..::.DoubleVector
The fitted x values.
- y
- Type: CenterSpace.NMath.Core..::.DoubleVector
The fitted y values.
- solution
- Type: CenterSpace.NMath.Core..::.DoubleVector
>The parameters of the function at the found minimum.
- numInterpolatedValues
- Type: System..::.Int32
The number of interpolated values.
Type Parameters
- M
[Missing <typeparam name="M"/> documentation for "M:CenterSpace.NMath.Charting.Microsoft.NMathChart.Show``1(CenterSpace.NMath.Analysis.OneVariableFunctionFitter{``0},CenterSpace.NMath.Core.DoubleVector,CenterSpace.NMath.Core.DoubleVector,CenterSpace.NMath.Core.DoubleVector,System.Int32)"]
Remarks
Equivalent to:
CopyC#
NMathChart.Show( ToChart( ovf, x, y, solution, numInterpolatedValues ) );