Item

IMathMatrix indexer

Elements of matrix

public IMathElement this[int row, int column] { get; set; }
ParameterDescription
rowThe zero-based index of the row to get item
columnThe zero-based index of the column to get item

Examples

Example:

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

See Also