How to make the cursor go automatically to command window after hitting run (F5) in MATLAB R2016a?

15 views (last 30 days)
When there is a user defined input, MATLAB's cursor would automatically go to the command window after hitting run and takes the input.
For some strange reason, in this version of MATLAB (i.e R2016a), I have to manually click on command window (or use CTRL+0) to shift MATLAB's focus.
I tried resetting MATLAB preferences but still doesn't work. I am not sure if other users had experienced a similar problem.
Any help on fixing this is greatly appreciated. Thanks!
  3 Comments
Roman Kuc
Roman Kuc on 9 Jun 2016
In 2016a you must click on the Command window to move the cursor from the Editor window when running a program that contains an input command x = input('x= '); This is annoying - Previous versions brought the cursor to the Command window automatically so the user can respond to the prompt. In 2016a, the response shows in the editor. Is there a setting that fixes this?

Sign in to comment.

Accepted Answer

Daniel
Daniel on 17 Nov 2016
I found the solution. Use the command "commandwindow" before you run the "input" command. This will shift the focus (from whever it was) to the command window before asking for an input.
Example:
%%Insert in your script the following
commmandwindow;
input('Press ENTER to continue');
This has worked for me in Matlab R2016a
  3 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements 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!