open a variable in a function
이전 댓글 표시
Hello,
I have a dialog box created within a function. Within the dialog box is a pushbutton with a callback that is planned to create a variable and then opens it in the variable editor, all this while the dialog box is still active. If i close the variable editor and press the same button again, it should open the variable in the variable editor again.
I have tried using openvar() but openvar opens variables from the workspace in scope, which is the 'base' workspace during a callback. The variable is created in the callback and thus openvar() does not work for me.
how can I open the variable created in the callback in the variable editor without the use of evalin or assignin?
Thanks!
댓글 수: 2
Walter Roberson
2019년 1월 31일
편집: Walter Roberson
2019년 1월 31일
The scope for callbacks is the base workspace only for callbacks specified as character vector or a cell array in which the first element is a character vector .otherwise the scope would be the function that is the callback .
Abel Tan
2019년 1월 31일
답변 (2개)
I cannot try it currently. Although the callback is called from the base workspace, the current workspace inside the callback is the callback's one. So you can create the variable there:
function YourCallback(hObject, EventData, handles)
X = rand(2, 2);
openvar('X');
pause(20); % For this demonstration only!!!
end
Does this work? Then the assumption, that the Base workspace is used, is not correct. Is your problem solved then?
댓글 수: 7
Guillaume
2019년 1월 31일
You're correct, openvar only uses the current workspace (the callback).
With your example, after 20 seconds, the variable will disappear from the editor (if pause is on, if not, it disappears straight away). I'm not sure it's a good idea to prevent a callback from completing until a user interaction is finished. It may freeze the rest of the UI/matlab.
Abel Tan
2019년 1월 31일
Guillaume
2019년 1월 31일
when the variable editor open, it shows the variable does not exist
The variable only exists for the duration of the callback. If you put a breakpoint on the end statement of your callback, you'll see that when it's hit, the variable editor does show your variable. However, if you then let execution continue, the variable is destroyed together with the callback workspace as soon as that end statement is executed.
Jan
2019년 1월 31일
So keep the workspace alive. Use uiwait to wait until the variable editor is closed.
I do not like GUIs, which block Matlab. Therefore openvar has a severe drawback and I'd prefer an uitable also.
Abel Tan
2019년 2월 1일
Guillaume
2019년 2월 1일
Possibly a drawnow before calling uiwait may display the variables. However, it's never a good idea to suspend a UI callback in order to allow more UI interaction so it may be that it doesn't work either. I think it's clear that the variable editor is not meant to be used as part of a GUI.
is it alright if I leave it without accepting an answer?
Maybe write your own answer summarising the discussion and accept it. Just so, the question has some sort of closure.
Jan
2019년 2월 1일
"is it alright if I leave it without accepting an answer?"
Yes, this is okay. It is useful for the forum, if you write your own answer and accept this if you've found a working solution.
Guillaume
2019년 1월 31일
0 개 추천
"the workspace in scope, which is the 'base' workspace during a callback"
Not at all. The workspace in scope is that of the callback, not the base workspace. However, that workspace is very short lived and is destroyed as soon as the callback completes. So any callback variable shown in the variable editor won't be displayed anymore when the callback returns. Instead you'll see The variable xxx does not exist.
I don't think there's a way to use the variable editor in conjunction with a GUI. If there is, it's probably going to involve some ugly hacks. Perhaps your best bet would be to use a uitable instead.
카테고리
도움말 센터 및 File Exchange에서 Surrogate Optimization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!