|  | DoubleTriDiagMatrixToString(String) Method | 
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic string ToString(
	string formatString
)
Public Function ToString ( 
	formatString As String
) As String
public:
String^ ToString(
	String^ formatString
)
member ToString : 
        formatString : string -> string Parameters
- formatString  String
- Format string used to format the matrix values.
Return Value
StringA string containing the formatted matrix values.
 Remarks
Remarks
            The string format is:
            
rows x columns [ matrix values, one space between cells and two between rows ]
            Zero values are printed.
            
 Example
Example4x4 [ 2 5 0 0  6 9 7 0  0 8 9 -2  0 0 7 10 ]
 See Also
See Also