DeleteRow

IMathMatrix.DeleteRow method

Deletes the specified row

public void DeleteRow(int rowIndex)
ParameterTypeDescription
rowIndexInt32The zero-based index of the row to delete.

Examples

Example:

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

See Also