  | DoubleComplexMatrixWrite(TextWriter) Method | 
            Writes a text representation of this matrix to the writer.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Write(
	TextWriter writer
)
Public Sub Write ( 
	writer As TextWriter
)
public:
void Write(
	TextWriter^ writer
)
member Write : 
        writer : TextWriter -> unit Parameters
- writer  TextWriter
 - Writer where text is written.
 
Remarks
            The string format is:
            
[number of rows]x[number of columns] [ matrix values row by row ]
            A space is placed between rows. 
            
See Also