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( DoubleComplexLeastSquares lsq, DoubleComplexVector y, NMathChart..::.Unit xUnits ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub Show ( _ lsq As DoubleComplexLeastSquares, _ y As DoubleComplexVector, _ xUnits As NMathChart..::.Unit _ ) |
| Visual C++ |
|---|
public: static void Show( DoubleComplexLeastSquares^ lsq, DoubleComplexVector^ y, NMathChart..::.Unit^ xUnits ) |
Parameters
- lsq
- Type: CenterSpace.NMath.Core..::.DoubleComplexLeastSquares
Least squares object.
- y
- Type: CenterSpace.NMath.Core..::.DoubleComplexVector
The right-hand side of the linear system.
- xUnits
- Type: CenterSpace.NMath.Charting.Microsoft..::.NMathChart..::.Unit
The units for the x-axis.
Remarks
Equivalent to:
CopyC#
NMathChart.Show( ToChart( lsq, y, xUnits ) );
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if the length of y does not equal the length of lsq.YHat. |