NiHu
2.0
|
#include <mex_matrix_separate.hpp>
Public Types | |
typedef Eigen::Map< Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > > | base_t |
typedef T | scalar_t |
the scalar type | |
Public Member Functions | |
real_matrix (size_t rows, size_t cols, mxArray *&output) | |
output matrix (allocating) constructor More... | |
real_matrix (mxArray const *input) | |
input matrix constructor More... | |
brief Container class of a real matrix stored in Matlab format
the | real type (float double etc) |
Definition at line 133 of file mex_matrix_separate.hpp.
|
inline |
output matrix (allocating) constructor
used when a matrix created in C++ is passed to Matlab
[in] | rows | number of rows |
[in] | cols | number of columns |
[out] | output | pointer to the result matrix is copied here |
Definition at line 148 of file mex_matrix_separate.hpp.
|
inline |
input matrix constructor
used a Matlab-allocated matrix is read in C++
[in] | input | pointer to the native Matlab matrix format |
Definition at line 159 of file mex_matrix_separate.hpp.