Click or drag to resize

FloatComplexBandMatrixToString Method

Returns a formatted string representation of this matrix.

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#
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,-1) (5,3) (0,0) (0,0)  (-3,4) (6,1) (9,2) (0,0)  (-4,0) (7,2) (10,4) (7,1)  (0,0) (8,-3) (3,1) (2,2) ]
See Also