Item

IMathMatrix 索引器

矩阵的元素

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");

另请参阅