Go to the first, previous, next, last section, table of contents.

Memory layout

We use flat blocks of memory to store matrices and vectors, not C-style pointer-to-pointer arrays. The matrices are stored in row-major order -- i.e. the column index (second index) moves continuously through memory.


Go to the first, previous, next, last section, table of contents.