numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Definition of format_dense_matrix function. More...
#include <cstdint>
#include <Eigen/Core>
#include <fmt/base.h>
#include "num_collect/base/exception.h"
#include "num_collect/logging/logging_macros.h"
Go to the source code of this file.
Classes | |
class | num_collect::util::impl::dense_matrix_format_view< Matrix > |
Class of expressions to format dense matrices. More... | |
struct | fmt::formatter< num_collect::util::impl::dense_matrix_format_view< Matrix > > |
fmt::formatter for num_collect::util::impl::dense_matrix_format_view. More... | |
Namespaces | |
namespace | fmt |
Namespace of fmt library. | |
namespace | num_collect |
Namespace of num_collect source codes. | |
namespace | num_collect::util |
Namespace of utilities. | |
namespace | num_collect::util::impl |
Namespace of internal implementations. | |
Enumerations | |
enum class | num_collect::util::dense_matrix_format_type : std::uint8_t { num_collect::util::one_line , num_collect::util::multi_line } |
Enumeration of matrix format types. More... | |
Functions | |
template<typename Matrix > | |
auto | num_collect::util::format_dense_matrix (const Eigen::DenseBase< Matrix > &mat, dense_matrix_format_type type=dense_matrix_format_type::one_line) |
Format a dense matrix. | |
Definition of format_dense_matrix function.
Definition in file format_dense_matrix.h.