Click or drag to resize

DoubleVectorWrite(TextWriter, String) Method

Writes a formatted text representation of this vector.

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 values.
Remarks
Each number is formatted using Double.ToString(formatString) where formatString is the passed parameter. For example, "C" formats each number as a currency. The resulting character representation is of the form [ v1 v2 v3 ... ] where each number is formatted using the specified formatString.
See Also