Go to the source code of this file.
|
using | codac2::Row = Eigen::Matrix<double,1,-1> |
| Alias for a dynamically-sized row vector of doubles.
|
|
- Date
- 2024
- Author
- Simon Rohou
- Copyright
- Copyright 2023 Codac Team
- License: GNU Lesser General Public License (LGPL)
◆ Row
Alias for a dynamically-sized row vector of doubles.
Defines a convenient shorthand for representing row 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 Row & | x ) |
|
inline |
Stream output operator for Row
objects.
- Parameters
-
os | The output stream to write to. |
x | The row whose contents are to be printed. |
- Returns
- A reference to the modified output stream.
34 {
36 return os;
37 }
Eigen::IOFormat codac_row_fmt()
Provides an Eigen IOFormat for formatting row vectors.
Definition codac2_matrices.h:205