Click or drag to resize

DoubleComplexVector(String, NumberStyles) Constructor

Returns a new DoubleComplexVector instance from a given string representation using the specified style.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexVector(
	string s,
	NumberStyles styles
)

Parameters

s  String
A string representation of a vector.
styles  NumberStyles
One or more number styles.
Remarks
Acceptable strings are of the form [ (r1,i1) (r2,i2) (r3,i3) ... ]. The data elements can be in any format that is supported by Double.Parse( string, NumberStyles ). Note that whitespace, even if set as a group separator, is taken as a data separator. Parentheses are taken as complex number separators not as negative currency values.
C#
string s = "(4.523E+000,4.323E+000) (4.555E+000,9.943E+000) (-4.4E-002,-5.0E+000)";
v = new DoubleComplexVector( s, NumberStyles.Number | NumberStyles.AllowExponent );
See Also