我有一个关于在 Matlab 中绘制循环结果的问题。这是代码。
for t=0:1:10;
VS=3*exp(-t/3)*sin(pi*t);
if VS>0
VL=VS
else VL=0
end
end
plot(t,VL)
xlabel('Time(s)')
ylabel('Across Voltage(V)')
title('Across Voltage Vs Time')
我想根据上述表达式中的电压与从 0 到 10 的时间绘制一个图。但是,在运行代码后,该图仍然没有显示任何内容。谁能帮我弄清楚为什么?