How to return the outputs of mexFunction() in Matlab?

12 views (last 30 days)
I have this code in C:
#include <mex.h>
#include <matrix.h>
#include<stdio.h>
#include <math.h>
//...
int callFun(int argc, char *argv[]){
int aa = 4;
printf ( "\naa value = %d\n",aa);
return aa;
}
//...
and I want to call it using Matlab. To do this, I have created this mexFunction()
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
int argc = 0;
char **argv;
int i, result;
argc = nrhs;
argv = (char **) mxCalloc( argc, sizeof(char *) );
for (i = 0; i < nrhs; i++){
if( !mxIsChar( prhs[i] ) ){
mexErrMsgTxt("Input must be of type char.");
return;
}
argv[i] = mxArrayToString( prhs[i] );
}
result = callFun( argc, argv );
for( i=argc-1; i>=0; i-- )
mxFree( argv[i] );
mxFree( argv );
if( result )
mexErrMsgTxt("main function causes an error");
}
However, I do not know how to get aa value, when I call callFun() in Matlab.
>> Outputs = callFun('callFun','ff'); % this should returns aa valueme
Is it possible to improve mexFunction for better performance?

Answers (1)

James Tursa
James Tursa on 22 Sep 2019
Put this at the bottom of your code. But remember that if you call mexErrMsgTxt your mex function will exit immediately and not return any value, so if you want to see the result you should delete the code that calls mexErrMsgTxt.
plhs[0] = mxCreateDoubleScalar(result);
  2 Comments
shdotcom shdotcom
shdotcom shdotcom on 23 Sep 2019
Edited: shdotcom shdotcom on 23 Sep 2019
Thank you very much. What if I want to return an array of more than one values (with different types), instead of a value?
James Tursa
James Tursa on 23 Sep 2019
Edited: James Tursa on 23 Sep 2019
Then you will have to copy the values one-by-one. E.g.,
double *dp, *pr;
int i, n;
// some code here to allocate and assign n values to dp[0], dp[1], etc.
plhs[0] = mxCreateDoubleMatrix(1,n,mxREAL);
pr = mxGetPr(plhs[0]);
for( i=0; i<n; i++ ) {
pr[i] = dp[i];
}
mxFree(dp);
Or you could use memcpy( ) to copy everything as a block.

Sign in to comment.

Categories

Find more on Write C Functions Callable from MATLAB (MEX Files) in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!