How do I resolve "Error while evaluating TimerFcn for timer 'timer-1"?
29 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi:
While executing a Timer callback function, I encounter the following two error statements:
- Error while evaluating TimerFcn for timer 'timer-1'.
- Insufficient number of outputs from right hand side of equal sign to satisfy assignment.
Am I correct that this error is occurring in a MATLAB library function? If so, how do I locate where this assignment is taking place so that I can further debug the problem? I am using MATLAB 2022b.
For reference, this is the callback function:
function create_batch_file_and_run_Callback(~, ~, H) % =================================================================
create_batch_file_Callback([], [], H)
H = guidata(findall(0,'type','figure','tag','unicorn')); % since gets updated with batchFileName
H.IWantToCloseGUI = 1; % in create_batch_file_and_run_Callback
guidata(H.unicorn,H);
T = timer;
set(T,'StartDelay',2,'TimerFcn',['run_dr_suite_batch(''' H.batchFileName ''')']);
start(T);
myclosefcn(H.unicorn);
2 comentarios
Manikanta Aditya
el 22 de Mzo. de 2024
Editada: Manikanta Aditya
el 22 de Mzo. de 2024
function create_batch_file_and_run_Callback(~, ~, H)
% =================================================================
create_batch_file_Callback([], [], H)
H = guidata(findall(0,'type','figure','tag','unicorn')); % since gets updated with batchFileName
H.IWantToCloseGUI = 1; % in create_batch_file_and_run_Callback
guidata(H.unicorn, H);
T = timer;
set(T, 'StartDelay', 2, 'TimerFcn', ['run_dr_suite_batch(''' H.batchFileName ''');']);
start(T);
myclosefcn(H.unicorn);
end
This should resolve the "Insufficient number of outputs from right hand side of equal sign to satisfy assignment" error, as the string now represents a valid MATLAB expression.
Respuestas (2)
Dinesh
el 10 de Abr. de 2024
Hi Gary,
When you use a timer to execute a certain piece of code, then you might encounter the error "Error while evaluating TimerFcn for timer 'timer-1'" in a case where there is an error in the function that is being called after the timer expires. In this case, I believe that there might be an error with the "run_dr_suite_batch" function.
If you are able to execute the script in one machine successfully and not for the other system, then one of the most obvious reasons is the difference in MATLAB versions. It is recommended to always use the latest version. But, some of the older functionalities might've also been deprecated in newer versions, so keep an eye on that.
Here's a link that will give you detailed information for each release as to what are the new features, bugs fixed, etc: https://www.mathworks.com/help/matlab/release-notes.html
0 comentarios
Ver también
Categorías
Más información sobre Startup and Shutdown 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!