splitapply does not retain ME stack
64 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vasco
el 15 de En. de 2026 a las 11:02
When the function that splitapply throws an error, this line number of this error is not include in the output (matlab2024b)
Example:
T=table([1:3]');
G=findgroups(T);
splitapply(@fun, T, G);
function out = fun(varargin)
ERROR
end
This returns:
Error using splitapply>localsplitandapply (line 196)
Unable to apply the function 'fun' to the 1st group of data.
Error in splitapply (line 135)
varargout = localsplitandapply(fun,dataVars,gdiffed,sgnums,gdim,nargout);
Error in templateLoopOverAll (line 231)
splitapply(@fun, T, G);
Caused by:
Unrecognized function or variable 'ERROR'.
I was expeting that the line number that actually caused that error would be included:
Error in testfile>fun (line 5)
ERROR
Error in testfile (line 3)
fun()
Missing this information makes the debugging of fun very challenging.
How to retrieve this line number?
Respuesta aceptada
Más respuestas (1)
Matt J
el 15 de En. de 2026 a las 13:24
Editada: Matt J
el 15 de En. de 2026 a las 13:32
Run with Pause on Errors.

Then the code will stop at the offending line:

6 comentarios
Matt J
el 28 de En. de 2026 a las 13:05
Editada: Matt J
el 28 de En. de 2026 a las 13:56
I use it all the time and have never had a problem with it stopping in plotting functions.
'dbstop if caught error' is usually more prone to stop in places you don't want, and will fail to stop at explicit errors that you do want to intercept.
Ver también
Categorías
Más información sobre Debugging and Analysis 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!