DeleteColumn

IMathMatrix.DeleteColumn method

删除指定列

public void DeleteColumn(int columnIndex)
范围类型描述
columnIndexInt32从零开始的索引要删除的列。

例子

示例:

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

也可以看看