Click or drag to resize

FloatTriDiagMatrixToString Method

Returns a formatted string representation of this matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public override string ToString()

Return Value

String
A string containing the formatted matrix values.
Remarks
The representation is:
C#
rows x columns [ matrix values, one space between cells and two between rows ]
Zero values are printed.
Example
C#
4x4 [ 2 5 0 0  6 9 7 0  0 8 9 -2  0 0 7 10 ]
See Also