我有一個有很多情節的代碼。這個問題(請原諒我的無知,因爲我不知道它是否可能)是,例如,當我從一開始就執行時,我直接看到最後一個情節,而不是一個接一個地看。因此,舉例來說,我已經試過,但它並沒有在所有的工作:在Matlab中關閉/暫停過程
pause(2); %After two seconds it starts and open the plot but I directly see the last plot, not this
plot (x, y);
title ('Average values')
close; % The command close it works but only if I press 'evaluate function'
pause(2);
plot (out1,out2);
close;
而且,我已經試過用鍵盤命令來嘗試,如果有可能用一個鍵,然後關閉情節,用另一把鑰匙打開另一把鑰匙,但我無法做到。
如果有人知道我怎麼能做到這一點,我會是這樣我會很感激,