Click or drag to resize

DoubleComplexVectorToString(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 DoubleComplex.ToString(formatString) where formatString is the passed parameter. For example, "e" formats each number in scientific format.
See Also