photo

Carter Pennington


Actif depuis 2018

Followers: 0   Following: 0

Statistiques

  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Question


how do you graph z=sqrt(9-r^2cos^2(theta))?
syms x y z; [x,y,]=meshgrid(-10:1:10); z = abs(sqrt(9-r.^2*cos.^2(theta))); surf (r,theta,z); ylim([-1,2]); xlabel('x...

presque 6 ans il y a | 2 réponses | 0

2

réponses

Question


how to plot z=9-sqrt(x^2+y^2) inside the cylinder r=2?
clear all; syms x y; xlabel('x'); ylabel('y'); zlabel('z'); [x,y] = meshgrid(-10:1:10,-10:1:10); y=9-sqrt(x.^2+y.^2); ...

presque 6 ans il y a | 2 réponses | 0

2

réponses

Question


How do I plot x^2+z^2=9 above the xy plane and between y=-1 and y=2?
syms x y z; [x,y,z]=meshgrid(-10:1:10); Z = realsqrt(9-x^2); surf(X,Y,Z);

presque 6 ans il y a | 3 réponses | 0

3

réponses