Go to the source code of this file.
|
using | codac2::Matrix = Eigen::Matrix<double,-1,-1> |
| Alias for a dynamic-size matrix 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)
◆ Matrix
Alias for a dynamic-size matrix of doubles.
Represents a matrix with dynamic number of rows and columns, where each element is a double precision floating point number.
This type alias is based on Eigen's matrix template and corresponds to Eigen::Matrix<double,-1,-1>
.
- See also
- Vector, Row, Eigen::Matrix
◆ operator<<()
std::ostream & codac2::operator<< |
( |
std::ostream & | os, |
|
|
const Matrix & | x ) |
|
inline |
Stream output operator for Matrix
objects.
- Parameters
-
os | The output stream to write to. |
x | The matrix whose contents are to be printed. |
- Returns
- A reference to the modified output stream.
36 {
38 return os;
39 }
Eigen::IOFormat codac_matrix_fmt()
Provides an Eigen IOFormat for formatting matrices.
Definition codac2_matrices.h:232