필터 지우기
필터 지우기

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

조회 수: 15 (최근 30일)
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
Roman Kuc
Roman Kuc 2016년 6월 9일
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?

댓글을 달려면 로그인하십시오.

채택된 답변

Daniel
Daniel 2016년 11월 17일
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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by