Lines Matching refs:matrices
7 In Eigen, all matrices and vectors are objects of the Matrix template class.
8 Vectors are just a special case of matrices, with either 1 row or 1 column.
40 matrices, with either 1 row or 1 column. The case where they have 1 column is the most common;
55 Of course, Eigen is not limited to matrices whose dimensions are known at compile time.
86 Constructors taking sizes are also available. For matrices, the number of rows is always passed fir…
97 In order to offer a uniform API across fixed-size and dynamic-size matrices, it is legal to use the…
98 constructors on fixed-size matrices, even if passing the sizes is useless in this case. So this is …
114 For matrices, the row index is always passed first. For vectors, just pass one index.
127 is not restricted to vectors, it is also available for general matrices, meaning index-based access
128 … of coefficients. This however depends on the matrix's storage order. All Eigen matrices default to
164 All these methods are still available on fixed-size matrices, for the sake of API uniformity. Of co…
234 … Options is a bit field. Here, we discuss only one bit: \c RowMajor. It specifies that the matrices
236 \ref TopicStorageOrders "storage orders". For example, this type means row-major 3x3 matrices:
241 … the exact sizes of your matrices are not known at compile time, a fixed upper bound is known at