Azzera filtri
Azzera filtri

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

15 visualizzazioni (ultimi 30 giorni)
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 Commenti
Roman Kuc
Roman Kuc il 9 Giu 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?

Accedi per commentare.

Risposta accettata

Daniel
Daniel il 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 Commenti

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by