public DoubleMatrix this[
IndexCollection rowIndexes,
IndexCollection columnIndexes
] { get; }
Public ReadOnly Default Property Item (
rowIndexes As IndexCollection,
columnIndexes As IndexCollection
) As DoubleMatrix
Get
public:
virtual property DoubleMatrix^ default[IndexCollection^ rowIndexes, IndexCollection^ columnIndexes] {
DoubleMatrix^ get (IndexCollection^ rowIndexes, IndexCollection^ columnIndexes) sealed;
}
abstract Item : DoubleMatrix with get
override Item : DoubleMatrix with get
ArgumentNullException | rowIndexes is null. -or- columnIndexes is null. |
ArgumentOutOfRangeException | rowIndexes contains an index
which is greater than or equal to the number of rows of this instance. -or- columnIndexes contains an index which is greater than or equal to the number of columns of this instance. |