photo

Carter Pennington


Aktiv seit 2018

Followers: 0   Following: 0

Statistik

  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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...

mehr als 5 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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); ...

mehr als 5 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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);

mehr als 5 Jahre vor | 3 Antworten | 0

3

Antworten