Carter Pennington
Followers: 0 Following: 0
Statistica
3 Domande
0 Risposte
RANK
127.349
of 295.467
REPUTAZIONE
0
CONTRIBUTI
3 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
33.33%
VOTI RICEVUTI
0
RANK
of 153.912
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Domanda
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...
quasi 6 anni fa | 2 risposte | 0
2
risposteDomanda
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); ...
quasi 6 anni fa | 2 risposte | 0
2
risposteDomanda
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);
quasi 6 anni fa | 3 risposte | 0