[mexFunction in Matlab] printf() function in C code

2 visualizaciones (últimos 30 días)
shdotcom shdotcom
shdotcom shdotcom el 23 de Sept. de 2019
Respondida: James Tursa el 23 de Sept. de 2019
If I have a C code that consists of three files, Afun.c, Bfun.c and Cfun.c
int Afun (int argc, char *argv[]){)
{
Bfun();
// ....
int aa = 5;
return aa;
}
void Bfun (void)
{
Cfun();
}
void Cfun (void)
{
printf ( "\n This is C function\n");
}
In the mexFunction in Matlab, how can I show the output of printf() of Cfun()? where Afun() is the main function in C code.
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++){
argv[i] = mxArrayToString( prhs[i] );
}
// .....
result = Afun(argc, argv);
plhs[0] = mxCreateDoubleScalar(result);
}

Respuestas (1)

James Tursa
James Tursa el 23 de Sept. de 2019
How you have it written should work, except maybe replace printf( ) with mexPrintf( ). Also, depending on your compiler and settings, you may need to move the Bfun( ) call after the int aa definition. Are you having problems with this not displaying anything?

Categorías

Más información sobre Write C Functions Callable from MATLAB (MEX Files) en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by