Home | History | Annotate | Download | only in doc

Lines Matching full:storage

3 /** \page TopicStorageOrders Storage orders
5 There are two different storage orders for matrices and two-dimensional arrays: column-major and row-major.
6 This page explains these storage orders and how to specify which one should be used.
14 \section TopicStorageOrdersIntro Column-major and row-major storage
53 \section TopicStorageOrdersInEigen Storage orders in Eigen
55 The storage order of a matrix or a two-dimensional array can be set by specifying the \c Options template
61 specify the storage order.
63 If the storage order is not specified, then Eigen defaults to storing the entry in column-major. This is also
66 Matrices and arrays using one storage order can be assigned to matrices and arrays using the other storage
72 \section TopicStorageOrdersWhich Which storage order to choose?
74 So, which storage order should you use in your program? There is no simple answer to this question; it depends
77 - Your users may expect you to use a specific storage order. Alternatively, you may use other libraries than
78 Eigen, and these other libraries may expect a certain storage order. In these cases it may be easiest and
79 fastest to use this storage order in your whole program.
86 row-major storage orders transparently, the Eigen library may well work best with column-major matrices.