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: 5.1.0.0

Syntax

C#
public void Write(
	TextWriter writer,
	string formatString
)
Visual Basic (Declaration)
Public Sub Write ( _
	writer As TextWriter, _
	formatString As String _
)
Visual C++
public:
void Write(
	TextWriter^ writer, 
	String^ formatString
)

Parameters

writer
Type: System.IO..::.TextWriter
Writer where text is written.
formatString
Type: System..::.String
Format string used to format the matrix values.

Remarks

The string format is:
CopyC#
[number of rows]x[number of columns] [ matrix values row by row ]
A space is placed between rows. Each number is formatted using Float.ToString(formatString) where formatString is the passed parameter.

See Also