用matlab 吧这个方程的三维图画出来~
来源:学生作业帮 编辑:作业帮 分类:英语作业 时间:2024/11/06 07:05:33
用matlab 吧这个方程的三维图画出来~
就是这个方程
(爱的方程式)
(x^2+9/4y^2+z^2-1)^3-x^2*z^3-9/80y^2z^3 =0其中-3
就是这个方程
(爱的方程式)
(x^2+9/4y^2+z^2-1)^3-x^2*z^3-9/80y^2z^3 =0其中-3
I did this before, so just give you the codes I wrote, try this:
%%This file creates a 3-d red heart with an equation
[x,y,z]=meshgrid(linspace(-3,3,120));
f=(x.^2+(9*y.^2)./4+z.^2-1).^3-((9*y.^2).*(z.^3))./80-(x.^2).*(z.^3);
p=patch(isosurface(x,y,z,f,0));
set(p,'FaceColor','r')
grid on
daspect([1 1 1])
view(3)
camlight('right')
camlight('left')
camlight('headlight')
lighting phong
xlabel('X')
ylabel('Y')
zlabel('Z')
title('Heart of Math')
%%This file creates a 3-d red heart with an equation
[x,y,z]=meshgrid(linspace(-3,3,120));
f=(x.^2+(9*y.^2)./4+z.^2-1).^3-((9*y.^2).*(z.^3))./80-(x.^2).*(z.^3);
p=patch(isosurface(x,y,z,f,0));
set(p,'FaceColor','r')
grid on
daspect([1 1 1])
view(3)
camlight('right')
camlight('left')
camlight('headlight')
lighting phong
xlabel('X')
ylabel('Y')
zlabel('Z')
title('Heart of Math')
用matlab 吧这个方程的三维图画出来~
在matlab里面如何把这个公式用图画出来.
请matlab大神帮助我看看这个三维参数方程图像怎么画不出来.
跪求大神指导怎么画这个方程的三维图形?用matlab...
已知下数据,用matlab将散点图画出来,并在散点图上画出它的拟合曲线!
matlab 求拟合后的三维曲面方程
如何在matlab中画出三维曲线方程的图.
MATLAB 中怎么用参数方程作三维图象?
请问怎么用matlab绘制这个不连续函数的三维图像?
已知一下数据,用matlab将散点图画出来,并在散点图上画出它的最大概率的拟合曲线!
用matlab实现以下的问题:已知一个具体的平面方程,如何画出三维点的图形
matlab 简单的三维画图