Clear Filters
Clear Filters

difference between console window and desktop Command Window

5 views (last 30 days)
This is a very simple question, but I am not so sure about it. From my point, I think they are the same thing, but when I read documentation of diary,
doc diary
there are some contents in the following about the console window and desktop command window.
Viewing the output of diary in a console window might produce different results compared to viewing diary output in the desktop Command Window.
One example is using the \r option for the fprintf function; using the \n option might alleviate that problem.
Maybe some one can tell me with a screenshot, what is the difference between them?
Thanks forward!! Xiaodi

Accepted Answer

Image Analyst
Image Analyst on 3 Sep 2017
Well one difference is that when you've compiled your program and run it, you get (unless you suppress it) an operating system console window that is essentially supposed to be like the command window. It needs to do that because with a compiled program the full MATLAB development environment is not there so it creates this console window for output. HOWEVER the formatting (line wrap, spacing, etc.) is controlled by the operating system rather than MATLAB so there is a possibility things might look slightly different.
  3 Comments
Image Analyst
Image Analyst on 3 Sep 2017
I'm not sure what you're seeing, but yes, if you're running MATLAB with no IDE, like with the nodesktop option or from a compiled program, then the "command window" will created as your Ubuntu terminal window. The appearance there may be similar but it's not guaranteed to look EXACTLY the same. For example the font will probably be different, etc.

Sign in to comment.

More Answers (0)

Categories

Find more on Entering Commands 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!