Undefined function 'SGfast' for input arguments of type 'cell'
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nima
el 6 de Oct. de 2013
Comentada: Image Analyst
el 7 de Oct. de 2013
im trying to call a function but i got this error: Undefined function 'SGfast' for input arguments of type 'cell'.
the function is:[spktimes, nspikes] = SGfast([dt, nrep], rate, {deadtime, refracparams})
2 comentarios
Mohammad Monfared
el 6 de Oct. de 2013
what is SGfast? a user defined function? what ever it is, it dosen't accept cell array as input argument.
Image Analyst
el 7 de Oct. de 2013
Respuesta aceptada
Jan
el 6 de Oct. de 2013
No, the function cannot be: [spktimes, nspikes] = SGfast([dt, nrep], rate, {deadtime, refracparams}). This is the function call. The function itself can be found anywhere else, but the error message means most likely, that there is not an M-file with this name and it is not a subfunction of the current M-file also.
You can use the debugger to find out more details. Type this in the command window:
dbstop if error
Then start your program again. When it stops type:
which SGfast
Is anything found? What did you expect instead?
Más respuestas (0)
Ver también
Categorías
Más información sobre Automotive Radar en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!