Hello! I have a problem. I have made 2 3D graphics in Matlab. The first is an ellipsoid:
syms x y z
[x,y]=meshgrid([-5:0.05:5],[-5:0.05:5]);
z1=(sqrt(-9*x.^2-y.^2+9))
z2=(-sqrt(-9*x.^2-y.^2+9))
plot3(x,y,z1,x,y,z2)
zlim([-4 1.5])
And the se...
asked by
07.04.2017 / 04:01