Programmatic use of openvar - stoping a function while openvar is open

조회 수: 5 (최근 30일)
Tomy Duby
Tomy Duby 2016년 10월 23일
댓글: dasilvarosa 2018년 3월 5일
This is my question: While running a function, I would like the function to stop, open an array using openvar function, let the user examine / modify this array, close openvar and continue with the function. How can I make the function wait while the user had openvar open?
Thanks Tomy

답변 (2개)

Mark
Mark 2017년 3월 20일
Use openvar and then the keyboard command to go into debugging mode. Despite the other answer, this works perfectly fine in R2016b.
for T=1:5
openvar('T');
disp('Type <a href="matlab:dbcont">dbcont</a> or press F5 to continue');
keyboard;
disp(T);
end

Gowtham Uma M Jaganathan
Gowtham Uma M Jaganathan 2016년 10월 27일
As I understand, you want the execution of code to pause till you complete editing the Variable Editor.
As of MATLAB R2016b the Variable Editor is updated after the execution of the script and hence, you cannot modify the values in the Variable Editor when the script is in executing state. Hence, you cannot pause the execution of the script and then change the values inside the Variable Editor.
  댓글 수: 2
Walter Roberson
Walter Roberson 2016년 10월 27일
This answer implies that openvar cannot be meaningfully used in the debugger, since the script is paused while you are in the debugger and you state that openvar will not be updated until after the script executes. If so then this would be a change to openvar that would make openvar nearly useless.
Tomy Duby
Tomy Duby 2016년 10월 28일
I fully agree with Walter.
How can I ask Matworks to extend the functionality of openvar function?
Thanks Tomy

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by