0
我想用'save'命令在while循環的不同時間步中保存一些變量。它在我以前寫過的其他程序中工作。這是它第一次沒有保存。我嘗試了很多事情,比如重命名保存數據的文件,重命名腳本,但不起作用。這裏的示例代碼:MATLAB:保存命令不能正常工作
T=0;
while T<300 (time loop)
loop1
loop2
.
.
.
if T==0.01
save('arbit100x100ht10e-3results.txt','Pnew','unew','-ascii','-append')
else if T==0.02
save('arbit100x100ht10e-3results.txt','Pnew','unew','-ascii','-append')
else if T==0.04
save('arbit100x100ht10e-3results.txt','Pnew','unew','-ascii','-append')
.
.
. (all the if-if else statements have their respective "end")
T=T+ht; %ht is time step
end (while loop)
我無法想出一個辦法出於此。