Click or drag to resize

FloatMatrix(Int32, Int32, String, NumberStyles, Char) Constructor

Constructs a FloatMatrix instance from a formatted string with a specified delimiter and style.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatMatrix(
	int rows,
	int cols,
	string s,
	NumberStyles styles,
	char delimiter
)

Parameters

rows  Int32
Number of rows.
cols  Int32
Number of columns.
s  String
A formatted string representation of a matrix.
styles  NumberStyles
One or more number styles.
delimiter  Char
Delimiter between cells.
Remarks
Matrix cells are separated by the specified character. Rows are separated by newlines.
Example
Example strings with a style that allows for exponential format ( NumberStyles.Number | NumberStyles.AllowExponent):
C#
// 1 x 3 tab-delimited matrix
string s = "1.500000e+002\t1.444000e-001\t4.429923e+005\n";

// 2 x 2 comma-delimited matrix
string t = "1.10000e+000,-2.200000e-004\n3.332324e+000,-4.443233e+005\n";
See Also