Lines Matching refs:For
30 We offer a lot of convenience typedefs to cover the usual cases. For example, \c Matrix4f is
44 For example, the convenience typedef \c Vector3f is a (column) vector of 3 floats. It is defined as…
60 \em fixed \em size. For example, the convenience typedef \c MatrixXd, meaning
86 Constructors taking sizes are also available. For matrices, the number of rows is always passed fir…
87 For vectors, just pass the vector size. They allocate the array of coefficients
114 For matrices, the row index is always passed first. For vectors, just pass one index.
138 For now, it is enough to know this example:
178 …d side automatically so that it matches the size of the matrix on the right-hand size. For example:
197 … sizes where you can, and use dynamic sizes for larger sizes or where you have to. For small sizes,
236 \ref TopicStorageOrders "storage orders". For example, this type means row-major 3x3 matrices:
243 …For example the following matrix type uses a plain array of 12 floats, without dynamic memory allo…
251 \li MatrixNt for Matrix<type, N, N>. For example, MatrixXi for Matrix<int, Dynamic, Dynamic>.
252 \li VectorNt for Matrix<type, N, 1>. For example, Vector2f for Matrix<float, 2, 1>.
253 \li RowVectorNt for Matrix<type, 1, N>. For example, RowVector3d for Matrix<double, 1, 3>.
259 …defined for these five types doesn't mean that they are the only supported scalar types. For examp…