MATLAB: R2011B Command Window outputting every line that is executed in script

scripts debugging

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

Best Answer

Do you have echo or echo on anywhere in your script?