557 Views
#MATLAB#CODE
[x,y,z]=meshgrid(-2:0.2:2,-2:0.2:2,-2:0.5:2);
v = x.^5 + y.^2 + z.^2;
isosurface (x*6,y,z,v,3);
isosurface (x*2,y,z,v,4);
isosurface (x*3,y,z,v,5);
axis equal;
view (270,90);
colormap(hsv);
axis vis3d
view(-37,30);
axis off
title('rocket by RAhulPunk');
175200cookie-checkMatlab To Plot 3D Rocket