Revolving a curve about the y-axis to generate a 3D surface
Afficher commentaires plus anciens
I'm aware that the cylinder() functiond does this for revolutions about the x-axis. But is there a way to do this about the y-axis?
Réponse acceptée
Plus de réponses (1)
Or, interchange the data when you plot, e.g.,
t = 0:pi/10:2*pi;
r = 2 + cos(t);
[X,Z,Y] = cylinder(r);
surf(X,Y,Z);
xlabel X; ylabel Y; zlabel Z;
1 commentaire
Researcher
le 13 Juin 2022
Catégories
En savoir plus sur Graphics dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




