作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
以下是一个 mex 代码,它使用 Eigen 将来自 matlab 的密集数组 g 和 G 相乘。当 g 稀疏时我该怎么做?
#include <iostream>
#include <Eigen/Dense>
#include "mex.h"
using Eigen::MatrixXd;
using namespace Eigen;
/*gateway function*/
void mexFunction( int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs[]) {
int nRows=(int)mxGetM(prhs[0]);
int nCols=nRows;
double* g=mxGetPr(prhs[0]);
double* Gr=mxGetPr(prhs[1]);
Map<MatrixXd> gmap (g, nRows, nCols );
Map<MatrixXd> Grmap (Gr, nRows, nCols );
plhs[0] = mxCreateDoubleMatrix(nRows, nCols, mxREAL);
Map<MatrixXd> resultmap (mxGetPr(plhs[0]), nRows, nCols);
resultmap = gmap*Grmap;
}
最佳答案
您可以使用这些函数在 MATLAB 和 Eigen* 之间传递稀疏(压缩) double 矩阵:
#include "mex.h"
#include <Eigen/Sparse>
#include <type_traits>
#include <limits>
using namespace Eigen;
typedef SparseMatrix<double,ColMajor,std::make_signed<mwIndex>::type> MatlabSparse;
Map<MatlabSparse >
matlab_to_eigen_sparse(const mxArray * mat)
{
mxAssert(mxGetClassID(mat) == mxDOUBLE_CLASS,
"Type of the input matrix isn't double");
mwSize m = mxGetM (mat);
mwSize n = mxGetN (mat);
mwSize nz = mxGetNzmax (mat);
/*Theoretically fails in very very large matrices*/
mxAssert(nz <= std::numeric_limits< std::make_signed<mwIndex>::type>::max(),
"Unsupported Data size."
);
double * pr = mxGetPr (mat);
MatlabSparse::StorageIndex* ir = reinterpret_cast<MatlabSparse::StorageIndex*>(mxGetIr (mat));
MatlabSparse::StorageIndex* jc = reinterpret_cast<MatlabSparse::StorageIndex*>(mxGetJc (mat));
Map<MatlabSparse> result (m, n, nz, jc, ir, pr);
return result;
}
mxArray*
eigen_to_matlab_sparse(const Ref<const MatlabSparse,StandardCompressedFormat>& mat)
{
mxArray * result = mxCreateSparse (mat.rows(), mat.cols(), mat.nonZeros(), mxREAL);
const MatlabSparse::StorageIndex* ir = mat.innerIndexPtr();
const MatlabSparse::StorageIndex* jc = mat.outerIndexPtr();
const double* pr = mat.valuePtr();
mwIndex * ir2 = mxGetIr (result);
mwIndex * jc2 = mxGetJc (result);
double * pr2 = mxGetPr (result);
for (mwIndex i = 0; i < mat.nonZeros(); i++) {
pr2[i] = pr[i];
ir2[i] = ir[i];
}
for (mwIndex i = 0; i < mat.cols() + 1; i++) {
jc2[i] = jc[i];
}
return result;
}
读写 MATLAB/Octave 稀疏矩阵采用 here .
感谢@chtz 的推荐。
关于c++ - 将稀疏数组从 matlab 传递到 Eigen (C++) 再返回到 matlab?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49952275/
我有本地更改和远程更改。 有人告诉我必须先推,再 pull 。这背后有什么原因吗? 最佳答案 那个人错了:正确的模型是pull-before-you-push,而不是相反。 当您pull时,git 将
我正在使用最新版本的 Flat UI Pro 1.3.2 ( http://designmodo.com/flat/ ),jQuery 插件 flatui-radiocheck v0.1.0 和 iO
我是一名优秀的程序员,十分优秀!