how to allocate memory for these arrays.. in mex
Mostrar comentarios más antiguos
i am trying to compile a mex file. which has variable sized arrays and i found out these arrays should be dynamically allocated.. Here i tried to allocate the arrays but still i am getting error. Can someone check my mex file and arrays. Here Z is output which is array of variable size how to accommodate this?
float *B;
B= (float *)malloc(sizeof(float)*rmax*cmax*f2);
float B[rmax*cmax][f2];
free(B);
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Write C Functions Callable from MATLAB (MEX Files) en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!