Clear Filters
Clear Filters

How do I stop my app from closing after messages are displayed?

3 views (last 30 days)
I am in the process of developing my first MATLAB app and decided to try the application compiler.
I've now installed my app, leaving just a few disp lines without a semicolon.
When I run it, the Windows command prompt closes immediately after my messages are shown.
What do I have to code to avoid this from happening?

Answers (1)

Asim
Asim on 30 Sep 2023
I understand that your compiled MATLAB application closes after displaying the contents whereas you want the application to stay open until you close it manually.
You can accomplish this by enclosing your code within a while loop. This loop will maintain your application in an active state until a certain condition which is defined by you is fulfilled.
I hope this suggestion helps in solving the issue you were facing.
Thanks,
Asim Asrar

Categories

Find more on Programming in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!