MyraMath
|
Routines to load various containers from .csv files. More...
#include <myramath/utility/Number.h>
#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/eprintf.h>
#include <myramath/expression/vector.h>
#include <myramath/expression/transpose.h>
#include <myramath/expression/reshape.h>
#include <vector>
#include <fstream>
#include <sstream>
Go to the source code of this file.
Classes | |
class | myra::Matrix< Number > |
Tabulates an IxJ matrix. Allows random access, has column major layout to be compatible with BLAS/LAPACK. More... | |
class | myra::Vector< Number > |
Tabulates a vector of length N, allows random access. More... | |
Functions | |
template<class Number > | |
Matrix< Number > | myra::csvread_Matrix (const char *filename) |
Loads a Matrix from a .csv file. | |
template<class Number > | |
Vector< Number > | myra::csvread_Vector (const char *filename) |
Loads a Vector from a .csv file. | |
template<class T > | |
std::vector< T > | myra::csvread_vector (const char *filename) |
Loads a std::vector from a .csv file. | |
Routines to load various containers from .csv files.