假如两条线分别是x1、x2
则plot(x1);hold on;plot(x2)
中间用hold on命令就可以把多条线化在同一图中了,hold off释放
x = 0 : 0.01 : 2 * pi;
y1 = sin(x); y2 = cos(x); y3 = sin(x) + cos(x);
plot(x, y1)
axes('position', [0.55 0.2 0.3 0.2])
plot(x, y2)
xlabel('y2 = cos(x)');
axes('position', [0.15 0.15 0.3 0.2])
plot(x, y3)
xlabel(' y3 = sin(x) + cos(x)');
clear;clc
theta=0:0.1:2*pi;
y1=sin(theta).^2;
y2=cos(theta).^2;
polar(theta,y1);
hold on
polar(theta,y2);
在第一个polar后面加个hold on就行了
画图前用hold on就可以了