How to create an executable? Should I create a GUI first (GUI or AppDesign)?

1 view (last 30 days)
Good morning, I need to create an interface that later on can be exchange via an executable file for users who do not have Matlab. I am not a programmer expert. Should I build the app first and later the application compiler? Should I use the App Designer option or the GUI option? Thank you very much.
  11 Comments
Walter Roberson
Walter Roberson on 20 May 2018
"Am I wrong?"
Yes, you are wrong. The code generated by GUIDE is purely MATLAB and uses only MATLAB syntax. It does, however, arrange so that each user callback has a third parameter, handles, to make it easier to manage data sharing.
"Is it possible to have interactive tabs on an app designed with GUIDE?"
Unfortunately tabs were not implemented in the GUIDE layout tools. When GUIDE was designed, it did not take into account that different objects might be overlapping on the screen, just not in use at the same time.
It is possible to program tabs yourself, since the code generated by GUIDE is MATLAB code, but at that point you will likely find yourself fighting GUIDE.
Blanca Larraga
Blanca Larraga on 23 May 2018
Thanks to both of you. I am trying my best to use GUIDE. I will follow your instructions. I have been suggested to use App Designer better, any comments on that?

Sign in to comment.

Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!