Click or drag to resize

FloatComplexMatrixWrite(TextWriter, String) Method

Writes a formatted text representation of this matrix to the writer using the specified format.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Write(
	TextWriter writer,
	string formatString
)

Parameters

writer  TextWriter
Writer where text is written.
formatString  String
Format string used to format the matrix values.
Remarks
The string format is:
C#
[number of rows]x[number of columns] [ matrix values row by row ]
A space is placed between rows. Each number is formatted using FloatComplex.ToString(formatString) where formatString is the passed parameter.
See Also