Click or drag to resize

ReadOnlyDoubleMatrixItem Property (String, Int32)

Gets the elements 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
public DoubleMatrix this[
	string rowIndexes,
	int columnIndex
] { get; }

Parameters

rowIndexes
Type: SystemString
The zero-based row indexes of the elements to get. The value must be ":", which means that all valid row indexes are specified.
columnIndex
Type: SystemInt32
The zero-based column index of the elements to get.

Property Value

Type: DoubleMatrix
A tabular collection formed by the entries corresponding to the specified row and column indexes.

Implements

IReadOnlyTabularCollectionTValue, TCollectionItemString, Int32
Exceptions
ExceptionCondition
ArgumentNullExceptionrowIndexes is null.
ArgumentOutOfRangeExceptionrowIndexes is not a string reserved for collection sub-referencing.
-or-
columnIndex is less than zero.
-or-
columnIndex is greater than or equal to the number of columns of this instance.
See Also