Lines Matching full:stored
16 The entries of a matrix form a two-dimensional grid. However, when the matrix is stored in memory, the entries
19 We say that a matrix is stored in \b row-major order if it is stored row by row. The entire first row is
20 stored first, followed by the entire second row, and so on. Consider for example the matrix
30 If this matrix is stored in row-major order, then the entries are laid out in memory as follows:
34 On the other hand, a matrix is stored in \b column-major order if it is stored column by column, starting with
35 the entire first column, followed by the entire second column, and so on. If the above matrix is stored in
59 parameter is set to \c RowMajor, then the matrix or array is stored in row-major order; if it is set to
60 \c ColMajor, then it is stored in column-major order. This mechanism is used in the above Eigen program to
80 - Algorithms that traverse a matrix row by row will go faster when the matrix is stored in row-major order