Click or drag to resize

DoubleSymBandMatrixToString(String) Method

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

ToCommaSeparated

ToCommaSeparated(String)

ToTabDelimited

ToTabDelimited(String)


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

Parameters

formatString  String
Format string used to format the matrix values.

Return Value

String
A string containing the formatted matrix values.
Remarks
The string format is:
C#
hb rows x columns [ matrix values, one space between cells and two between rows ]
where hb is the half bandwidth. Zero values are printed.
Example
With format string of "F1"
C#
1 3x3 [ 2.0 5.0 0.0  5.0 6.0 9.0  0.0 9.0 -1.2 ]
See Also