行列を操作するために mex を使用して MATLAB の外部 C++ 関数をインデックス作成しようとしていますが、多次元インデックスを使用できません。ここに例が示されていますが、以下で説明する問題を解決する方法が見つかりません。サンプルマトリックスがあります:
>> mat
mat =
1 10
2 20
3 30
4 40
5 50
現在、機能するマトリックスを介して線形インデックスを使用しています。
#include <mex.h>
#include <iostream>
using namespace std;
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
//1.get pointer to input graph_list and allocate it
double *graph_list = mxGetPr(prhs[0]);
mwSize mrows = mxGetM(prhs[0]);
mwSize ncols = mxGetN(prhs[0]);
cout<< mrows<<" rows\n";
cout<< ncols<<" cols\n";
int mm, nn;
for (nn=0;nn<ncols;nn++) {
for (mm=0;mm<mrows;mm++){
cout << graph_list[nn*(mrows) +mm] <<"\n";
}
}
}
これにより、次が生成されます。
>> mexTryAlex(mat)
5 rows
2 cols
1
2
3
4
5
10
20
30
40
50
graph_list の定義を変更し、graph_list に 2D インデックスを作成しようとすると、次のようなコンパイル エラーが発生しmex
ます。
double **graph_list = mxGetPr(prhs[0]);
cout << graph_list[nn][mm];
編集:ここに受け取ったエラーメッセージがあります
>> mex mexTryAlex.cpp
Warning: You are using gcc version "4.4.3-4ubuntu5)". The version
currently supported with MEX is "4.3.4".
For a list of currently supported compilers see:
http://www.mathworks.com/support/compilers/current_release/
mexTryAlex.cpp: In function ‘void mexFunction(int, mxArray**, int, const mxArray**)’:
mexTryAlex.cpp:16: error: cannot convert ‘double*’ to ‘double**’ in initialization
mex: compile of ' "mexTryAlex.cpp"' failed.
??? Error using ==> mex at 208
Unable to complete successfully.