|  | FloatLowerTriMatrixToString Method | 
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic 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
Remarks
            The string format is:
            
rows x columns [ matrix values row by row ]
            Zero values are printed.
            
 Example
Example
            A 4 x 4 lower triangular matrix that looks like this:
            
|  1  0  0  0  |
|  2  3  0  0  |
|  4  5  6  0  |
|  7  8  9  10 |
            would be converted to this string: 
            
4x4 [ 1 0 0 0  2 3 0 0  4 5 6 0  7 8 9 0 ]
 See Also
See Also