#include <alpaqa/config/config.hpp>
#include <alpaqa/export.h>
#include <concepts>
#include <iosfwd>
#include <stdexcept>
#include <vector>
Go to the source code of this file.
|
template<class F >
requires (std::floating_point<F> || std::integral<F>) |
void | read_row_impl (std::istream &is, Eigen::Ref< Eigen::VectorX< F > > v, char sep) |
|
template<class F >
requires (std::floating_point<F> || std::integral<F>) |
std::vector< F > | read_row_std_vector (std::istream &is, char sep) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< Eigen::Index > > v, char sep) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< Eigen::Index > > v) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< float > > v, char sep) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< float > > v) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< double > > v, char sep) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< double > > v) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< long double > > v, char sep) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< long double > > v) |
|
void | read_row (std::istream &is, Eigen::Ref< Eigen::VectorX< type > > v, char sep=',') |
| Read one line of comma-separated values from is and write it to the vector v .
|
|
◆ ALPAQA_READ_ROW_OVL
#define ALPAQA_READ_ROW_OVL |
( |
|
type | ) |
|
Value: inline void read_row(std::istream &is, Eigen::Ref<Eigen::VectorX<type>> v, \
char sep) { \
return read_row_impl<type>(is, v, sep); \
} \
inline void read_row(std::istream &is, \
Eigen::Ref<Eigen::VectorX<type>> v) { \
return read_row_impl<type>(is, v); \
}
Definition at line 27 of file csv.hpp.