Go to the source code of this file.
|
using | codac2::Vector = Eigen::Matrix<double,-1,1> |
| Alias for a dynamically-sized column vector of doubles.
|
|
- Date
- 2024
- Author
- Simon Rohou
- Copyright
- Copyright 2023 Codac Team
- License: GNU Lesser General Public License (LGPL)
- Date
- 2024
- Author
- Simon Rohou, Damien Massé
- Copyright
- Copyright 2024 Codac Team
- License: GNU Lesser General Public License (LGPL)
◆ Vector
Alias for a dynamically-sized column vector of doubles.
Defines a convenient shorthand for representing column vectors with dynamic size. This type alias is based on Eigen's matrix template and corresponds to Eigen::Matrix<double,-1,1>
.
- See also
- Eigen::Matrix
◆ operator<<()
std::ostream & codac2::operator<< |
( |
std::ostream & | os, |
|
|
const Vector & | x ) |
|
inline |
Stream output operator for Vector
objects.
- Parameters
-
os | The output stream to write to. |
x | The vector whose contents are to be printed. |
- Returns
- A reference to the modified output stream.
34 {
36 return os;
37 }
Eigen::IOFormat codac_vector_fmt()
Provides an Eigen IOFormat for formatting column vectors.
Definition codac2_matrices.h:218