IROMatrix<'T> Type

IROMatrix represents a read-only matrix of values.

Instance members

Instance member Description

this.ColumnCount

Full Usage: this.ColumnCount

Returns: int
Modifiers: abstract

The number of columns of the matrix.

Returns: int

this.[arg1, arg2]

Full Usage: this.[arg1, arg2]

Parameters:
    arg0 : int
    arg1 : int

Returns: 'T
Modifiers: abstract

Gets an element of the matrix at (row, col).

arg0 : int
arg1 : int
Returns: 'T

this.RowCount

Full Usage: this.RowCount

Returns: int
Modifiers: abstract

The number of rows of the matrix.

Returns: int