0
for t=0:0.1:10;
VS=3*exp(-t/3).*sin(t*pi);
if VS>0
VL(t+1)=VS;
else
VL(t+1)=0;
end
end
plot(0:100,VL);
xlabel('Time(s)')
ylabel('Across Voltage(V)')
title('Across Voltage Vs Time')
如何根據VL(基於與上面表達的VS的關係)對t(從0到10,增量0.01)繪製該圖形?從循環繪圖
總是從matlab中得到錯誤「下標索引必須是真正的正整數或邏輯」。
謝謝。
見[這裏]( http://stackoverflow.com/questions/15262163/plotting-a-result-from-a-loop-in-matlab/15262205#15262205)的答案。 – 2013-03-07 06:38:02
哈哈@Parag那就是他的回覆xD – Cashew 2013-03-07 06:39:26
@Cashew ya我知道一旦看到問題 – 2013-03-07 07:54:37