Click or drag to resize

FloatComplexVectorParse(String) Method

Returns a new FloatComplexVector instance from a given string representation.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexVector Parse(
	string s
)

Parameters

s  String
A string representation of a complex vector.

Return Value

FloatComplexVector
A new vector.
Remarks
Acceptable string representations are of the form [ (r1,i1) (r2,i2) (r3,i3) ... ]. For example, [ (4.3,3.5) (23.4,-234.3) (-21.2,0) ]. Brackets are optional. Whitespace is ignored.
See Also