Command lines appear when I run an app.

13 views (last 30 days)
Hello everyone,
I am making an app on "Matlab app designer" and in a near future, when I have the app done, I would like to have it like an executable, I mean, like a program.
The point is that whenever I open Matlab app designer and run my app, in the command window of matlab appears all the names and dimensions of the widgets that are on my app (boxes, menus, text, windows...etc) as you can see in the photo below.
Is this supposed to happen, or is it supposed to be the command window clear without any command line? If in a near future I would like to export my app like an executable archive, do I have to get rid off this phenomenon?
Thank you very much
  2 Comments
ErikJon Pérez Mardaras
ErikJon Pérez Mardaras on 26 Oct 2021
Thanks for the response!
But matlab does not tell me any warning of that kind. It does tell me warning messages, but another kind of them.
I still do not know where to put those ";". If not after a FOR or and END. Where?
Thanks!

Sign in to comment.

Accepted Answer

Chris
Chris on 24 Oct 2021
Edited: Chris on 24 Oct 2021
It sounds like you have a line somewhere that is missing a semicolon.
If you set a property in the app but don't terminate the line with a semicolon, the Command Window will display everything about the app--just like in Matlab, if you set a variable without a semicolon, it will be displayed in the Command Window as well.
There is likely a warning present (indicated by an orange bar near the right side of App Designer, and a squiggly somwehere on the relevant line) that says "Terminate statement with a semicolon to supporess output"
  19 Comments
ErikJon Pérez Mardaras
ErikJon Pérez Mardaras on 15 Nov 2021
I have solved the problem.
The issue was that I had several lines without the semicolon ";".
I had few lines like:
app.Box.Visible='off'
without the ";".
Thank your very much for the responses!

Sign in to comment.

More Answers (2)

Image Analyst
Image Analyst on 26 Oct 2021
You can compile with the -e option to mcc to compile your app without a console (command) window, though I don't recommend it since often error messages will pop up there and if it's not there you won't see them and won't know what went wrong.
mcc -e yourApp.m

Image Analyst
Image Analyst on 28 Oct 2021
You might have done something like
app.NdeinputsLabel.String = 'whatever' % no semicolon
and when it hits that line, it lists all the fields of app like you've shown in your screenshot.
However, I've noticed several times now with R2021b that sometimes it lists all my lines of code regardless of whether semicolons are there or not. It's as if somehow "echo on" got turned on. I can do
echo off
and that fixes it (for a while), but I have no idea who, what, or how echo got turned on in the first place.
  1 Comment
dpb
dpb on 28 Oct 2021
Edited: dpb on 28 Oct 2021
Interesting observation that would/could explain symptoms, @Image Analyst.
I've never noticed such a phenomenon in or prior to R2020b; seems as though that symptom in R2021b would be worthy of bug report. Would certainly be annoying...
I don't recall ever using echo so I don't ever think about it even existing...it's a good thought even if OP isn't on R2021b yet to try setting it off.
I see it is another that won't echo (so to speak :) ) it's current state but is a toggle. I suppose somewhere in the bowels may be an inspectable property to determine state...

Sign in to comment.

Categories

Find more on Just for fun 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!