Lines Matching full:matrix
13 The entries of a matrix form a two-dimensional grid. However, when the matrix is stored in memory, the entries
16 We say that a matrix is stored in \b row-major order if it is stored row by row. The entire first row is
17 stored first, followed by the entire second row, and so on. Consider for example the matrix
27 If this matrix is stored in row-major order, then the entries are laid out in memory as follows:
31 On the other hand, a matrix is stored in \b column-major order if it is stored column by column, starting with
32 the entire first column, followed by the entire second column, and so on. If the above matrix is stored in
38 returns a pointer to the memory location of the first entry of the matrix.
52 The storage order of a matrix or a two-dimensional array can be set by specifying the \c Options template
53 parameter for Matrix or Array. As \ref TutorialMatrixClass explains, the %Matrix class template has six
56 parameter is set to \c RowMajor, then the matrix or array is stored in row-major order; if it is set to
77 - Algorithms that traverse a matrix row by row will go faster when the matrix is stored in row-major order