i have written the code, but, I don't know why it's not showing the orientation that I want? It doesn't look like what my instructor wants it to look like. Attached as a picture is the question and the picture of what it should look like.
1 view (last 30 days)
Show older comments
syms u v
r=sqrt(9);
fsurf(r*cos(u),r*sin(u),v,[0 2*pi 0 4])
xlabel('x');ylabel('y'),zlabel('z')
axis equal;
xlim([0 4]);ylim([0 4]);zlim([0 4])
hold on
syms y z
z = 4-y;
fmesh(z);
grid on;view([1 1 1]);
0 Comments
Answers (1)
Pinkesh Narsinghani
on 3 Dec 2018
The code is absolutely correct and it's doing exactly what instructor intended it to do. You just need to rotate this to get it in the orientation you like.
To rotate it use rotate 3D tool in the toolbar(in the figure pop-up) .I've attached screenshot of the tool to be used:
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!