How to fill a volume plot of a vector valued functions (with 3 variables)
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Again, I'm ascending new ground, now dealing with volume plots. I'm aware of Matlabs documentary concering this topic. But it doesn't seem to cover my problem. It's about plotting:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/644760/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/644765/image.png)
To the best of my knowldege this function will map a cuboid to
. So it should be representable without reducing any dimension. I feel like inconvenient doing this in Matlab, since there doesn't seem to exist some nice functions like mesh or surf for volumes, so I just can't
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/644770/image.png)
[u,v,w] = meshgrid(-1:0.1:1);
x = u.^2+u;
y = v.^2+v;
z = z.^2+z;
mesh(x,y,z) %... just defined for surfaces.
Nevertheless Is there some equivalence for volumes?
3 commentaires
Réponses (1)
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!