How to plot the following surface
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How to plot the following surface:
Which type of parametrization is required to plot it... please give me a code
0 commentaires
Réponse acceptée
Plus de réponses (2)
Sam Chak
le 10 Juin 2022
Sometimes I have troubles visualizing the geometry. Can I plot like this? It should look like an inverted cone.
x = linspace(-sqrt(2), sqrt(2), 41);
y = x;
[X, Y] = meshgrid(x, y);
Z = sqrt(X.^2 + Y.^2) + 1;
surf(X, Y, Z)
4 commentaires
Sam Chak
le 10 Juin 2022
Don't mention it. Aha... now I remember. You are the one who asked how to draw a Cylindrical structure inside a Dome. It's a good learning experience.
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!