|  | DoubleComplexVectorParse(TextReader) Method | 
            Constructs a DoubleComplexVector instance from the given text reader.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplexVector Parse(
	TextReader reader
)
Public Shared Function Parse ( 
	reader As TextReader
) As DoubleComplexVector
public:
static DoubleComplexVector^ Parse(
	TextReader^ reader
)
static member Parse : 
        reader : TextReader -> DoubleComplexVector Parameters
- reader  TextReader
- A reader positioned at the start of a text 
            representation of a complex vector.
Return Value
DoubleComplexVector Remarks
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
See Also