Click or drag to resize

FloatBandMatrixToString Method

Returns a formatted string representation of this matrix.

You can also use these methods to format a matrix:

ToCommaSeparated

ToCommaSeparated(String)

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#
lb ub rows x columns [ matrix values, one space between cells and two between rows ]
where lb is the lower bandwidth and ub is the upper bandwidth. Zero values are printed.
Example
C#
2 1 4x4 [ 2 5 0 0  3 6 9 0  4 7 10 7  0 8 3 2 ]
See Also