Lines Matching full:vectors
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.
56 \section TutorialMatrixVectors Vectors
58 As mentioned above, in Eigen, vectors are just a special case of
60 such vectors are called column-vectors, often abbreviated as just vectors. In the other case
61 where they have 1 row, they are called row-vectors.
67 We also offer convenience typedefs for row-vectors, for example:
106 For vectors, just pass the vector size. They allocate the array of coefficients
123 Finally, we also offer some constructors to initialize the coefficients of small fixed-size vectors up to size 4:
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
150 The operator[] is also overloaded for index-based access in vectors, but keep in mind that C++ doesn't allow operator[] to
151 take more than one argument. We restrict operator[] to vectors, because an awkwardness in the C++ language