R2011B Command Window outputting every line that is executed in script
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello recently MATLAB has been outputting every line that is executed in a script that i run. For example if I ran the script:
x = 1;
for i = 1:3
x = x+1;
if x == 4
x = 9;
end
end
I really want to eliminate this and go back to the default behavior I would get the following lines in the command window
x = 1;
for i = 1:3
x = x+1;
if x == 4
x = x+1;
if x == 4
x = x+1;
if x == 4
x = 9;
end
end
댓글 수: 0
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!