ReadOnlyComplexMatrixItem(Int32, Int32) Property

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

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public Complex this[
	int rowIndex,
	int columnIndex
] { get; }

Parameters

rowIndex  Int32
The zero-based row index of the element to get.
columnIndex  Int32
The zero-based column index of the element to get.

Property Value

Complex
The element corresponding to the specified row and column indexes.

Implements

IReadOnlyTabularCollectionTValue, TCollectionItemInt32, Int32

Exceptions

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