Click or drag to resize

FloatComplexTriDiagMatrixToString Method

Returns a formatted string representation of this matrix. Numbers are displayed using the specified format.

You can also use these methods to format a matrix:

ToTabDelimited

ToTabDelimited(String)


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 string format is:
C#
rows x columns [ matrix values, one space between cells and two between rows ]
Zero values are printed.
Example
C#
4x4 [ (2,0) (4,0) (0,0) (0,0)  (3,0) (5,0) (7,0) (0,0)  (0,0) (2,0) (-3, 4) (6,-4)  (0,0) (0,0) (-4.3, 5) (17.2, -0.11) ]
See Also