Hello all mexperts!
My problem is: when I use the following code, it will crash if I say
>>a = cell(2,2); >>myfun(a)
where myfun(a) is the function:
void mexFunction(int nlhs,mxArray *plhs[],int nrhs,const mxArray
*prhs[])
{
int index;
mxArray *cell_element_ptr = 0;
double...