matlab figure(1),figure(2)在哪个位置添加?
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/11 04:25:42
matlab figure(1),figure(2)在哪个位置添加?
我想做两个figure 一个是星形线,一个是四叶玫瑰线,这是我的代码
theta=linspace(0,2*pi,400);
rou=4*sin(2*theta);
figure(1)
hold on
polar(theta,rou);
b=2;
fh=@(x,y)x^(2/3)+y^(2/3)-b^(2/3)
ezplot(fh)
t=-2*pi:0.1:2*pi;
x=cos(t).^3;y=sin(t).^3;
figure(2);plot(x,y)
做出来以后四叶玫瑰线就跑到星形线的坐标轴里了
我想做两个figure 一个是星形线,一个是四叶玫瑰线,这是我的代码
theta=linspace(0,2*pi,400);
rou=4*sin(2*theta);
figure(1)
hold on
polar(theta,rou);
b=2;
fh=@(x,y)x^(2/3)+y^(2/3)-b^(2/3)
ezplot(fh)
t=-2*pi:0.1:2*pi;
x=cos(t).^3;y=sin(t).^3;
figure(2);plot(x,y)
做出来以后四叶玫瑰线就跑到星形线的坐标轴里了
theta=linspace(0,2*pi,400);
rou=4*sin(2*theta);
figure(1)
hold off
polar(theta,rou);
b=2;
fh=@(x,y)x^(2/3)+y^(2/3)-b^(2/3)
ezplot(fh)
t=-2*pi:0.1:2*pi;
x=cos(t).^3;y=sin(t).^3;
figure(2);
plot(x,y)
你看这样是否是你想要的?
rou=4*sin(2*theta);
figure(1)
hold off
polar(theta,rou);
b=2;
fh=@(x,y)x^(2/3)+y^(2/3)-b^(2/3)
ezplot(fh)
t=-2*pi:0.1:2*pi;
x=cos(t).^3;y=sin(t).^3;
figure(2);
plot(x,y)
你看这样是否是你想要的?
matlab figure(1),figure(2)在哪个位置添加?
matlab中figure指令如果后面加1,比如figure(1);figure(2)
matlab figure是什么用途
matlab中figure是什么意思
MATLAB怎么做两个figure?
matlab中figure坐标范围如何调节?
matlab中figure坐标范围如何调节
关于matlab中figure的问题
matlab中 figure有哪些属性
如何在matlab 上计算图形面积并在figure上显示
如果在MATLAB中,把图画在不同figure里,每个figure中画几个图我会做,但是还是需要画多个图.
怎样将matlab中plot3画出的不同曲线图显示在一个figure中