RowCount

IMathMatrix.RowCount property

Number of rows in the matrix

public int RowCount { get; }

Examples

Example:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
int rowCount = matrix.RowCount;

See Also