codac 2.0.0
Loading...
Searching...
No Matches
codac2_Matrix.h
Go to the documentation of this file.
1
9
10#pragma once
11
12#include "codac2_matrices.h"
13
14namespace codac2
15{
26 using Matrix = Eigen::Matrix<double,-1,-1>;
27
35 inline std::ostream& operator<<(std::ostream& os, const Matrix& x)
36 {
37 os << x.format(codac_matrix_fmt());
38 return os;
39 }
40}
std::ostream & operator<<(std::ostream &os, const BoolInterval &x)
Streams out a BoolInterval.
Definition codac2_BoolInterval.h:64
Eigen::Matrix< double,-1,-1 > Matrix
Alias for a dynamic-size matrix of doubles.
Definition codac2_Matrix.h:26
Eigen::IOFormat codac_matrix_fmt()
Provides an Eigen IOFormat for formatting matrices.
Definition codac2_matrices.h:232