MathMatrix

MathMatrix constructor

Initializes a new instance of the MathMatrix class.

public MathMatrix(int rowCount, int columnCount)
ParameterTypeDescription
rowCountInt32row count
columnCountInt32column count

Examples

Example:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);

See Also