Writes a formatted text representation of this matrix to the writer
using the specified format.
Namespace:
CenterSpace.NMath.CoreAssembly: 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#
A space is placed between rows. Each number is formatted using
Float.ToString(formatString) where formatString is the passed parameter.
[number of rows]x[number of columns] [ matrix values row by row ]