|  | DoubleTriDiagMatrixToString Method | 
            Returns a formatted string representation of this matrix.
            
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 representation is:
            
rows x columns [ matrix values, one space between cells and two between rows ]
            Zero values are printed.
            
 Example
Example
            With format string of "F1"
            
3x3 [ 2.0 5.0 0.0  3.0 6.0 9.0  0.0 7.0 10.0 ]
 See Also
See Also