Item

MathMatrix indexer

矩阵元素

public IMathElement this[int row, int column] { get; set; }
范围描述
row从零开始的索引要获取项目的行
column要获取项目

返回值

的列的从零开始的索引

例子

示例:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
matrix[0, 0] = new MathematicalText("item.1.1");

也可以看看