Click or drag to resize

ReadOnlyDoubleMatrixItem Property (String, String)

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,
	string columnIndexes
] { 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.
columnIndexes
Type: SystemString
The zero-based column indexes of the elements to get. The value must be ":", which means that all valid column indexes are specified.

Property Value

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

Implements

IReadOnlyTabularCollectionTValue, TCollectionItemString, String
Exceptions
ExceptionCondition
ArgumentNullExceptionrowIndexes is null.
-or-
columnIndexes is null.
ArgumentOutOfRangeExceptionrowIndexes is not a string reserved for tabular collection sub-referencing.
-or-
columnIndexes is not a string reserved for tabular collection sub-referencing.
See Also