Writes a formatted text representation of this vector.

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 values.

Remarks

Each number is formatted using DoubleComplex.ToString(formatString) where formatString is the passed parameter. For example, "e" formats each number in scientific notation. The resulting character representation is of the form [ v1 v2 v3 ... ] where each number is formatted using the specified formatString.

See Also