Carter Pennington
Followers: 0 Following: 0
Statistiques
3 Questions
0 Réponses
RANG
127 349
of 295 467
RÉPUTATION
0
CONTRIBUTIONS
3 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
33.33%
VOTES REÇUS
0
RANG
of 20 234
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
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éponsesQuestion
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éponsesQuestion
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