DeleteColumn

IMathMatrix.DeleteColumn method

Deletes the specified column

public void DeleteColumn(int columnIndex)
ParameterTypeDescription
columnIndexInt32The zero-based index of the column to delete.

Examples

Example:

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

See Also