|  | FloatHermitianMatrixToString(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
- A 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 row by row ]
 Example
Example
            A 4 x 4 Hermitian matrix that looks like this:
            
| (0,0)  (4,6)  (7,2)  (9,3) |
| (4,-6) (1,9)  (5,4)  (8,3) |
| (7,-2) (5,-4) (2,8)  (1,1) |
| (9,-3) (8,-3) (1,-1) (3,2) |
            would be converted to this string: 
            
4x4 [ (0,0) (4,6) (7,2) (9,3)  (4,-6) (1,9) (5,4) (8,3)  (7,-2) (5,-4) (2,8) (1,1)  (9,-3) (8,-3) (1,-1) (3,2) ]
 See Also
See Also