|  | DoubleComplexBandMatrixToString 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:
            
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
Example2 1 4x4 [ (2,-1) (5,3) (0,0) (0,0)  (-3,4) (6,1) (9,2) (0,0)  (-4,0) (7,2) (10,4) (7,1)  (0,0) (8,-3) (3,1) (2,2) ]
 See Also
See Also