发布网友 发布时间:2022-04-21 18:59
共5个回答
热心网友 时间:2023-09-19 04:23
是这样的,如果你再程序开始添加hold on这个的画,表示这之后的每一次作图都保留以前的图,这样就可以连续画图了
反之 hold off ,表示打开这个之后,,每次画图,删除以前的图,
热心网友 时间:2023-09-19 04:24
如果你是 曲线的话,用plot语句,之后加 hold on ,再plot 就可以在一幅图里画多个曲线了。
plot(x,x);
plot(x,x)
hold off
热心网友 时间:2023-09-19 04:24
画一张图figure一次,第一张除外
比如plot();
figure;
plot();
figure;
plot()
最后就有3张图了
热心网友 时间:2023-09-19 04:25
hold on;
plot(x,x);
plot(x,x)
hold off
热心网友 时间:2023-09-19 04:25
在第一行上加上命令
hold on
就可以连续画图了。