C++11 single-file-header MATio for reading and writing Eigen matrices to/from matlab data files. It uses the 'matio' library as a backend.
C++11 single-file-header MexEig for inclusion in mex files to simply convert Eigen matrices to and from mxArray structures.
There are two functions in MexEig:
template <class Matrix> EigenToMxArray(mxArray * dst, const Matrix & src)
template <class Matrix> MxArrayToEigen(Matrix & dst, const mxArray * src)
MATio exports a single class MatioFile():
MatioFile
wraps a matio data file, and providesread_mat()
andwrite_mat()
functions to read and write matrices from that file.read_mat()
andwrite_mat()
return 0 on success, and non-zero on failure. In event of failure, the error message can be retrieved fromlasterr()
.
And two stand-alone functions that throw standard exceptions on error conditions:
void read_mat(const char * filename, const char * matname, Derived & matrix)
void write_mat(const char * filename, const char * matname, Derived & matrix, bool replace = false)
Just #include "MexEig"
in a mex .cpp file, and call the wrappers.
If the requested conversions are impossible, exceptions will be
thrown, so maybe catch those:
#include "mex.h"
#include <iostream>
#include <Eigen/Core>
#include "MexEig"
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
try {
if (nrhs != 1) throw std::invalid_argument("requires one input arg");
if (nlhs != 1) throw std::invalid_argument("requires one ouput arg");
Eigen::Matrix<std::complex<double>, Eigen::Dynamic, Eigen::Dynamic> x;
MxArrayToEigen(x, prhs[0]);
plhs[0] = EigenToMxArray(x);
}
catch (std::exception & ex) {
mexErrMsgIdAndTxt("tmp:error", ex.what());
}
}
Using the bare functions in MATio:
#include <iostream>
#include "Eigen/Dense"
#include "MATio"
using namespace Eigen;
int main(int argc, char *argv[])
{
Matrix3f ff;
// read matrix 'ff' from file 'data.mat' in as floats
try {
read_mat("data.mat", "ff", ff);
std::cout << "ff=" << ff << std::endl;
// write it back out as double precision 'dd'
write_mat("data.mat", "dd", ff.cast<double>());
}
catch (const std::exception & ex) {
std::cout << "error:" << ex.what() << std::endl;
}
}
Using the MatioFile class, potentially more efficient:
#include "Eigen/Core"
#include "Eigen/Dense"
#include ".../MATio"
using namespace Eigen;
int main(int argc, char *argv[])
{
MatioFile file("data.mat");
Matrix3f ff;
// read matrix 'ff' in as single precision
if (!file.read_mat("ff", ff)) {
// show what we got
std::cout << "ff=" << ff << std::endl;
}
else {
std::cout << "error: " << file.lasterr() << std::endl;
}
ff = Matrix3f::Random();
// write ff as double precision matrix 'dd'
if (file.write_mat("dd", ff.cast<double>()))
std::cout << "error: " << file.lasterr() << std::endl;
}
git clone git@github.com:tesch1/eigen-matio.git
cd eigen-matio
cmake -Bbuild .
cmake --build build
cmake --build build --target test
There's a small example showing how to build an octave module using MexEig
Contributions / bug fixes welcome. They must be MPL2 licensed and maintain the same code formatting.
- sparse matrix support
- struct and cell support, read/write & parse
- more testing
- test against matio-1.3.4(?) because still shipping with RH6
- when it's stable submit to Eigen or matio
- v1.0.1 Wrap static members in static functions.
- v1.0.0 Cleaned up a lot of small problems and changed the API.
- v0.0.1 Initial release, not very good but semi-functional.
Mozilla 2.0, like the rest of Eigen.