How to surf very small values keeping the same ratio?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Alexandra Roxana
le 11 Juin 2023
Commenté : Torsten
le 12 Juin 2023
I'm having a solution with very small values and I need to surf it; this is how a part of the solution looks like:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1408409/image.jpeg)
I'm also using the same aspect ratio and because the values are so small the surf looks like a 2D plot.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1408414/image.jpeg)
It should look as if I would take a pencil and a piece of paper and I would draw it. Is there any way to keep the same aspect ratio but not to look like in the figure? Thank you.
0 commentaires
Réponse acceptée
John D'Errico
le 11 Juin 2023
I THINK what you are asking is how to make the surface show there is little variation in z. I'll make up an example...
[X,Y] = meshgrid(0:5,0:6);
Z = (X+Y)*1e-3;
surf(X,Y,Z)
box on
view(-60,10)
And it looks like the surface is doing something significant, when really, it is pretty boring. I'll redo the plot, then add one extra call now.
surf(X,Y,Z)
box on
axis equal
view(-60,10)
So viewed from the same angle, now we see that one of the surfaces is pretty boring, yet the first looks as if something is happening. The difference was the "axis equal" command.
2 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Orange 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!