How to steer uiprogressdlg from external function

조회 수: 3 (최근 30일)
Simon Allosserie
Simon Allosserie 2022년 11월 10일
댓글: Simon Allosserie 2022년 11월 14일
Hello
I am building an App wit appdesigner in which a rather complex function is called. The function is at the moment not within the app. Due to its complexity, it is a standalone function file. First of all, its 1500 lines of code would make the app code extremely long. Furthermore, working within the normal matlab interface enables me much more do to optimisations and tests on the function. Within the app it is much more difficult to look at intermediate values etc.
Within the function, I use the waitbar a lot to show progress through all the different calculation steps (as calculations can take multiple hours). Now for the app, I assume it is best to use uiprogressdlg for that purpose. In the end, this app must be deployed standalone to non-Matlab users.
However, I don't seem able to steer the uiprogressdlg from the external function. Is there a way to do this? Or is my only option to integrate the function fully within the app?

채택된 답변

Jiri Hajek
Jiri Hajek 2022년 11월 10일
Hi, I believe you could use the function setappdata, which allows you to change global variables in your app from an external function:
setappdata(obj,name,val)
  댓글 수: 5
Jiri Hajek
Jiri Hajek 2022년 11월 11일
Hi Simon, I'm afraid I confused two things yesterday. In fact, you have two alternative possiblities, which I mixed up together - sorry for that. Using the handle of the progress dialog you simply change them same way as if you were inside your app. You may safely forget about the setappdata function, it is unnecessary in your case.
In your app, create a hadle of the progres dialog window, which just needs to be defined as a global property:
properties
MyProgressDlg % handle of your progress dialog
end
...
...
...
MyApp.MyProgressDlg = uiprogressdlg(app, .......);
In your external function, you can directly access the properties of the dialog window:
myFunction(var1, var2, myApp)
...
newProgressValue = 0.1;
newProgressMessage = 'Some text to display.';
MyApp.MyProgressDlg.Value = newProgressValue;
MyApp.MyProgressDlg.Message = newProgressMessage;
...
end
Hope this helps.
Simon Allosserie
Simon Allosserie 2022년 11월 14일
This works perfectly! Thanks for your elaborate example, now I'm able to make all the necessary connections between my app and my external function.
All the best,
Simon

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by