Lines Matching refs:storage
5 There are two different storage orders for matrices and two-dimensional arrays: column-major and ro…
6 This page explains these storage orders and how to specify which one should be used.
11 \section TopicStorageOrdersIntro Column-major and row-major storage
52 The storage order of a matrix or a two-dimensional array can be set by specifying the \c Options te…
58 specify the storage order.
60 If the storage order is not specified, then Eigen defaults to storing the entry in column-major. Th…
63 Matrices and arrays using one storage order can be assigned to matrices and arrays using the other …
69 \section TopicStorageOrdersWhich Which storage order to choose?
71 So, which storage order should you use in your program? There is no simple answer to this question;…
74 …- Your users may expect you to use a specific storage order. Alternatively, you may use other libr…
75 …Eigen, and these other libraries may expect a certain storage order. In these cases it may be easi…
76 fastest to use this storage order in your whole program.
83 …row-major storage orders transparently, the Eigen library may well work best with column-major mat…