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

15 visualizaciones (últimos 30 días)
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 comentarios
Roman Kuc
Roman Kuc el 9 de Jun. de 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?

Iniciar sesión para comentar.

Respuesta aceptada

Daniel
Daniel el 17 de Nov. de 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 comentarios

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by