Constructs a FloatComplexVector instance from the given text reader.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatComplexVector Parse(
	TextReader reader
)
Visual Basic (Declaration)
Public Shared Function Parse ( _
	reader As TextReader _
) As FloatComplexVector
Visual C++
public:
static FloatComplexVector^ Parse(
	TextReader^ reader
)

Parameters

reader
Type: System.IO..::.TextReader
A reader positioned at the start of a text representation of a complex vector.

Remarks

Acceptable text 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