Hi there,
Does anyone know how to get user keyboard input from within a mexfile? Or just how to pause it so I can look at things on the screen?
thanks
Markus
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...