| DoubleSymmetricMatrixToString Method |
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public override string ToString()
Public Overrides Function ToString As String
public:
virtual String^ ToString() override
abstract ToString : unit -> string
override ToString : unit -> string
Return Value
StringA string containing the formatted matrix values.
Remarks
The string format is:
rows x columns [ matrix values row by row ]
Example
A 4 x 4 symmetric matrix that looks like this:
| 0 4 7 9 |
| 4 1 5 8 |
| 7 5 2 6 |
| 9 8 6 3 |
would be converted to this string:
4x4 [ 0 4 7 9 4 1 5 8 7 5 2 6 9 8 6 3 ]
See Also