Click or drag to resize

DoubleVectorToString(String) Method

Returns a formatted string representation of this vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public string ToString(
	string formatString
)

Parameters

formatString  String
Format string used to format the vector values.

Return Value

String
A formatted string representation of the form [ v1 v2 v3 ... ] where each number is formatted using the specified formatString.
Remarks
Each number is formatted using Double.ToString(formatString) where formatString is the passed parameter. For example, "C" formats each number as a currency.
See Also