Click or drag to resize
DigitalRuneMatrix33DItem Property (Int32, Int32)
Gets or sets the element at the specified index.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public double this[
	int row,
	int column
] { get; set; }

Parameters

row
Type: SystemInt32
The row index.
column
Type: SystemInt32
The column index.

Property Value

Type: Double
The element at the specified row and column.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException The index [row, column] is out of range.
Remarks
The indices are zero-based: [0,0] is the first element, [2,2] is the last element.
See Also