Problem using mxGetPr for accessing array of type double

1 回表示 (過去 30 日間)
AP
AP 2012 年 10 月 21 日
Dear All,
I am using mxGetPr function to retrieve the data of an array of type double.
#include "matrix.h"
#include "math.h"
#include "mex.h"
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
#define FACES prhs[0]
int nFaces;
double *faces;
nFaces = mxGetM( FACES );
faces = mxGetPr( FACES );
for( int i=0; i<nFaces ; i++ )
mexPrintf("(%d): [ %d ]\n", i, faces[i] );
}
When I print the value of the first column of prhs[0], it's all zero while those of the input array is not zero and has different values. I checked with the documentation and many examples onlines and didn't see any difference between my code and theirs.
Could someone help me how to access the value of the elements of prhs[0] correctly? I also checked the type of input array using whos command and it is double.
Thanks,
Ahmad
  1 件のコメント
AP
AP 2012 年 10 月 21 日
I changed it to mwSize but still I don't have access to correct values of prhs[0].

サインインしてコメントする。

採用された回答

Jan
Jan 2012 年 10 月 21 日
The "%d" format in mexPrintf does not match the type double. Better:
mexPrintf("(%d): [ %f ]\n", i, faces[i] );
  1 件のコメント
AP
AP 2012 年 10 月 21 日
Great catch! Thanks.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWrite C Functions Callable from MATLAB (MEX Files) についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by