Click or drag to resize

DoubleComplexMatrixParse(TextReader) Method

Constructs a DoubleComplexMatrix instance from the given text reader.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexMatrix Parse(
	TextReader reader
)

Parameters

reader  TextReader
A formatted string representation of a matrix.

Return Value

DoubleComplexMatrix
Remarks
The text representation must contain the number of rows, followed by an optional separator character, such as x, followed by the number of columns. The matrix values, separated by white space, are then read in row by row. If the sequence of numbers begins with a left bracket '[', then the numbers are read until a matching right bracket ']' is encountered. If no brackets are used, numbers are read until the end of the stream.
Example
Example:
C#
string s = "1 x 3 [ (1.5,1.444) (-4.42992,9.93) (1.4,9.0) ]";
TextReader reader = new StringReader( s );
DoubleComplexMatrix M = DoubleComplexMatrix.Parse( reader, NumberStyles.Number | NumberStyles.AllowExponent );
See Also