怎么用matlab画以下函数的三维图(以x,y,z为坐标)
函数为((x-y)^2-1)*((y-z)^2-1)*((z-x)^2-1)=0。我用你提供的方法(如下)绘制函数为((x-y)^2)*((y-z)^2)*((z-x)^...
函数为((x-y)^2-1)*((y-z)^2-1)*((z-x)^2-1)=0。
我用你提供的方法(如下)绘制函数为((x-y)^2)*((y-z)^2)*((z-x)^2)-1=0,图形不对啊,应该一圆柱面才对。
x=0:0.1:10;y=0:0.1:10;z=0:0.1:10;
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2).*((y-z).^2).*((z-x).^2)-1;
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1]);
view(3);
camlight; lighting phong 展开
我用你提供的方法(如下)绘制函数为((x-y)^2)*((y-z)^2)*((z-x)^2)-1=0,图形不对啊,应该一圆柱面才对。
x=0:0.1:10;y=0:0.1:10;z=0:0.1:10;
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2).*((y-z).^2).*((z-x).^2)-1;
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1]);
view(3);
camlight; lighting phong 展开
2个回答
展开全部
x=1:0.1:10;y=1:0.1:10;z=0:0.1:10;
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2-1).*((y-z).^2-1).*((z-x).^2-1);
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
圆柱面的话,你的方程有问题,应该是((x-y)^2-1)+((y-z)^2-1)+((z-x)^2-1)=0吧?
x=-3:0.1:3;y=-3:0.1:3;z=-3:0.1:3;
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2-1)+((y-z).^2-1)+((z-x).^2-1);
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2-1).*((y-z).^2-1).*((z-x).^2-1);
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
圆柱面的话,你的方程有问题,应该是((x-y)^2-1)+((y-z)^2-1)+((z-x)^2-1)=0吧?
x=-3:0.1:3;y=-3:0.1:3;z=-3:0.1:3;
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2-1)+((y-z).^2-1)+((z-x).^2-1);
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
x=1:0.1:10;y=1:0.1:10;z=0:0.1:10;
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2-1).*((y-z).^2-1).*((z-x).^2-1);
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
圆柱面的话,方程有问题,应该是((x-y)^2-1)+((y-z)^2-1)+((z-x)^2-1)=0吧?
x=-3:0.1:3;y=-3:0.1:3;z=-3:0.1:3;
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2-1)+((y-z).^2-1)+((z-x).^2-1);
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2-1).*((y-z).^2-1).*((z-x).^2-1);
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
圆柱面的话,方程有问题,应该是((x-y)^2-1)+((y-z)^2-1)+((z-x)^2-1)=0吧?
x=-3:0.1:3;y=-3:0.1:3;z=-3:0.1:3;
[x,y,z]=meshgrid(x,y,z);
f=((x-y).^2-1)+((y-z).^2-1)+((z-x).^2-1);
p=patch(isosurface(x,y,z,f,0));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询