Click or drag to resize

ReadOnlyDoubleMatrixITabularCollectionDouble, DoubleMatrixItem Property (Int32, Int32)

Gets or sets the element of this instance corresponding to the specified row and column indexes.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
double ITabularCollection<double, DoubleMatrix>.this[
	int rowIndex,
	int columnIndex
] { get; set; }

Parameters

rowIndex
Type: SystemInt32
The zero-based row index of the element to get or set.
columnIndex
Type: SystemInt32
The zero-based column index of the element to get or set.

Property Value

Type: Double
The element corresponding to the specified row and column indexes.

Implements

ITabularCollectionTValue, TCollectionItemInt32, Int32
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionrowIndex is less than zero.
-or-
rowIndex is equal to or greater than NumberOfRows.
-or-
columnIndex is less than zero.
-or-
columnIndex is equal to or greater than NumberOfColumns.
See Also