我想生成一个3D图,显示代表不等式组合的三维区域。在Mathematica中,我使用RegionPlot3D[]
:
RegionPlot3D[
x^2 + y^2 + z^2 < 1 && x^2 + y^2 < z^2, {x, -1, 1}, {y, -1,
1}, {z, -1, 1}, PlotPoints -> 35, PlotRange -> All]
生成:
我怎样才能在MATLAB中做到这一点?
答案 0 :(得分:4)
我不认为MATLAB中有RegionPlot3D
的等效函数。但是,您可以使用surf
制作3D曲面图并以数学方式设计输出。例如,您的代码可以在MATLAB中重写为:
m=100;
n=100;
% set up the domain points
x = linspace(-1,1,m);
y = linspace(-1,1,n);
% set up the range points
z1 = nan(m,n);
z2 = nan(m,n);
for i=1:m
for j=1:n
zSquared = x(i)^2+y(j)^2; % z^2
if zSquared<=1/2
z1(i,j) = sqrt(zSquared); % the parabola
z2(i,j) = sqrt(1-zSquared); % the ball
end
end
end
AxesHandle=axes();
grid on;
hold(AxesHandle,'all');
surf(AxesHandle,x,y,z1,'EdgeColor','none'); % top part
surf(AxesHandle,x,y,z2,'EdgeColor','none');
surf(AxesHandle,x,y,-z1,'EdgeColor','none'); % bottom part
surf(AxesHandle,x,y,-z2,'EdgeColor','none');
view([-55,16]);
但是图形比Mathematica差。欢呼声。