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