在Matlab中怎样才能出现几个Figure窗口?

2025-02-25 12:58:08
推荐回答(1个)
回答1:

每次运行完plot之后,加figure语句。例如:
x=1:0.1:2*pi
y1=sin(x)
y2=x.^2
plot(x,y1)
figure
plot(x,y2)