|
template<std::floating_point F> |
std::string | float_to_str (F value, int precision) |
|
template<class T > |
std::ostream & | print_csv_impl (std::ostream &os, const T &M, std::string_view sep, std::string_view begin, std::string_view end) |
|
template<class T > |
std::ostream & | print_matlab_impl (std::ostream &os, const T &M, std::string_view end) |
|
template<class T > |
std::ostream & | print_python_impl (std::ostream &os, const T &M, std::string_view end) |
|
template<class... Args> |
std::ostream & | print_csv_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< int > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_matlab_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< int > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_python_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< int > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_csv_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< Eigen::Index > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_matlab_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< Eigen::Index > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_python_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< Eigen::Index > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_csv_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< double > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_matlab_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< double > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_python_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< double > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_csv_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< long double > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_matlab_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< long double > > &M, Args &&...args) |
|
template<class... Args> |
std::ostream & | print_python_helper (std::ostream &os, const Eigen::Ref< const Eigen::MatrixX< long double > > &M, Args &&...args) |
|
template<class Derived , class... Args> |
std::ostream & | print_csv (std::ostream &os, const Eigen::DenseBase< Derived > &M, Args &&...args) |
|
template<class Derived , class... Args> |
std::ostream & | print_matlab (std::ostream &os, const Eigen::DenseBase< Derived > &M, Args &&...args) |
|
template<class Derived , class... Args> |
std::ostream & | print_python (std::ostream &os, const Eigen::DenseBase< Derived > &M, Args &&...args) |
|