Filter löschen
Filter löschen

How to break a running function in an App Designer app?

4 Ansichten (letzte 30 Tage)
qmnjb007
qmnjb007 am 14 Jan. 2018
Bearbeitet: Matt J am 16 Jan. 2018
I have a button in app designer that calls a function, which can sometimes take 15+ min to return. I'd like to have a second button which breaks the function call of the first so that I can change other UI elements and start the call over. What's the best way to do this?

Antworten (1)

Matt J
Matt J am 15 Jan. 2018
Bearbeitet: Matt J am 15 Jan. 2018
Ctrl+C should abort the function call without aborting the app.
If that's not graceful enough, you will need to modify whatever loop button #1 is running so that it periodically check the state of some app property controlled by button #2.
  6 Kommentare
qmnjb007
qmnjb007 am 16 Jan. 2018
Matt, when you say "pass app" as an argument, what do you mean?
Matt J
Matt J am 16 Jan. 2018
Bearbeitet: Matt J am 16 Jan. 2018
I mean, pass the variable called "app" to sim_year as an optional 5th argument,
x = sim_year(app.in_it, slr_cur, batt_cur, app.b_chrg, app);
That way, sim_year will have access to everything that app does.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by