Matlab绘制动态曲线时间:2021-01-02 19:18:58j=1; for i=1:max %max为最大时间 hold on; if(i==t(j)) %t为时间向量 plot(x(j),y(j),'--ro'); j = j+1; end pause(0.1);%暂停0.1s end