Click or drag to resize

DenseMatrixItem Property

Gets or sets the value at the specified location in the matrix.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public override double this[
	int rowIndex,
	int columnIndex
] { get; set; }

Parameters

rowIndex
Type: SystemInt32
The row index of the element being queried.
columnIndex
Type: SystemInt32
The column index of the element being queried.

Return Value

Type: Double
The value in the matrix.
Exceptions
ExceptionCondition
IndexOutOfRangeException Thrown when rowIndex is greater than RowDimension, or when columnIndex is greater than ColumnDimension, or when either are less than zero.
See Also