How do I resolve "Error while evaluating TimerFcn for timer 'timer-1"?
조회 수: 29 (최근 30일)
이전 댓글 표시
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
Manikanta Aditya
2024년 3월 22일
편집: Manikanta Aditya
2024년 3월 22일
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.
답변 (2개)
Dinesh
2024년 4월 10일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!