这个问题是我正在开展的更大项目的一部分。我使用了一个更简单的mex函数来解释我正在处理的问题。
要求是更改传递给mex函数的参数(RHS上的变量)。这是必要的要求。 我已经能够在double * as argumjents的情况下更改变量。这是代码:
#include "mex.h"
/* The computational routine */
void arrayProduct(double x, double *y, double *z, mwSize n)
{
mwSize i;
/* multiply each element y by x */
for (i=0; i<n; i++) {
z[i] = (x * y[i]);
}
}
/* The gateway function */
void mexFunction( int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs[])
{
double multiplier; /* input scalar */
double *inMatrix; /* 1xN input matrix */
size_t ncols; /* size of matrix */
double *outMatrix; /* output matrix */
/* check for proper number of arguments */
if(nrhs!=3) {
mexErrMsgIdAndTxt("MyToolbox:arrayProduct:nrhs","Three inputs required.");
}
if(nlhs!=0) {
mexErrMsgIdAndTxt("MyToolbox:arrayProduct:nlhs","Zero output required.");
}
/* get the value of the scalar input */
multiplier = mxGetScalar(prhs[0]);
/* create a pointer to the real data in the input matrix */
inMatrix = mxGetPr(prhs[1]);
/* get dimensions of the input matrix */
ncols = mxGetN(prhs[1]);
/* get a pointer to the real data in the output matrix */
outMatrix = mxGetPr(prhs[2]);
/* call the computational routine */
arrayProduct(multiplier,inMatrix,outMatrix,(mwSize)ncols);
}
当我尝试使用类型转换为int *做同样的事情时,它不起作用。 这是我尝试过的代码:
/* The computational routine */
void arrayProduct(double x, double *y, int *z, mwSize n)
{
mwSize i;
/* multiply each element y by x */
for (i=0; i<n; i++) {
z[i] = (x * y[i]);
}
}
/* The gateway function */
void mexFunction( int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs[])
{
double multiplier; /* input scalar */
double *inMatrix; /* 1xN input matrix */
size_t ncols; /* size of matrix */
int *outMatrix; /* output matrix */
/* check for proper number of arguments */
if(nrhs!=3) {
mexErrMsgIdAndTxt("MyToolbox:arrayProduct:nrhs","Two inputs required.");
}
if(nlhs!=0) {
mexErrMsgIdAndTxt("MyToolbox:arrayProduct:nlhs","One output required.");
}
/* get the value of the scalar input */
multiplier = mxGetScalar(prhs[0]);
int mult = (int)multiplier;
/* create a pointer to the real data in the input matrix */
inMatrix = mxGetPr(prhs[1]);
/* int *inMat;
inMat = *inMatrix;*/
/* get dimensions of the input matrix */
ncols = mxGetN(prhs[1]);
/* create the output matrix */
/* get a pointer to the real data in the output matrix */
outMatrix = (int *)mxGetData(prhs[2]);
/* call the computational routine */
arrayProduct(multiplier,inMatrix,outMatrix,(mwSize)ncols);
}
我需要在项目的情况下将double转换为int *,并在这个简单的示例上解决它将解决问题。 有什么建议吗?
答案 0 :(得分:1)
将指针转换为其他类型不会将指向的数据转换为该类型。几乎所有Matlab数据都是double
的数组。如果您的函数需要int
数组,则需要为int
分配一个单独的数组,并一次转换一个元素。