InsertColumnAfter

MathMatrix.InsertColumnAfter method

在指定的列之后插入一个新列 最初新列中的所有元素都是空的。

public void InsertColumnAfter(int columnIndex)
范围类型描述
columnIndexInt32插入新的列的索引

例子

示例:

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

也可以看看