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 得到错误“下标索引必须是真正的正整数或逻辑。”
谢谢。