MATLAB: Newbie question – running the script no longer puts anything in the command window

script command window run

Hi, I've made a few scripts, which work okay, but now when I run them, it no longer puts the individual calculations in the central command window. Any idea how I can make it do that again?

Best Answer

Try issuing the "echo on" command, or removing the semicolons at the ends of your lines, or making sure you didn't accidentally comment out any fprintf()'s, disp()'s, or other statements that would cause output to be sent to the command window.