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