Click or drag to resize

SparseCompressedRowMatrixStorageT Fields

The SparseCompressedRowMatrixStorageT type exposes the following members.

Fields
 NameDescription
Public fieldColumnCount
(Inherited from MatrixStorageT)
Public fieldColumnIndices An array containing the column indices of the non-zero values. Element "j" of the array is the number of the column in matrix that contains the j-th value in the Values array.
Public fieldRowCount
(Inherited from MatrixStorageT)
Public fieldRowPointers The array containing the row indices of the existing rows. Element "i" of the array gives the index of the element in the Values array that is first non-zero element in a row "i". The last value is equal to ValueCount, so that the number of non-zero entries in row "i" is always given by RowPointers[i+i] - RowPointers[i]. This array thus has length RowCount+1.
Public fieldValues Array that contains the non-zero elements of matrix. Values of the non-zero elements of matrix are mapped into the values array using the row-major storage mapping described in a compressed sparse row (CSR) format.
Top
See Also