|  | DoubleComplexBandMatrixToString(String) Method | 
            Returns a formatted string representation of this matrix. Numbers are displayed
            using the specified format.
            
You can also use these methods to format a matrix:
ToTabDelimited
ToTabDelimited(String)
 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:
            
lb ub rows x columns [ matrix values, one space between cells and two between rows ]
            where 
lb is the lower bandwidth and 
ub is
            the upper bandwidth. Zero values are printed.
            
 Example
Example
            With format string of "F1"
            
2 1 4x4 [ (2.0,-1.0) (5.0,3.0) (0.0,0.0) (0.0,0.0)  (-3.0,4.0) (6.0,1.0) (9.0,2.0) (0.0,0.0)  (-4.0,0.0) (7.0,2.0) (10.0,4.0) (7.0,1.0)  (0.0,0.0) (8.0,-3.0) (3.0,1.0) (2.0,2.0) ]
 See Also
See Also