Matlab App Designer UIAxes same scale for x and y axis
60 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ermanno Manca
le 23 Juin 2020
Commenté : Adam Danz
le 24 Juin 2020
Hi I'm looking for a command to have the same scale for x and y axis in my app.UIAxis plot.
unfortuantely set(gca,'DataAspectRatio',[10 1 1]) doesn't work since it opens a new figure instead of changing the axis scale in my plot.
Thanks a lot and best regards.
0 commentaires
Réponse acceptée
Adam Danz
le 23 Juin 2020
Modifié(e) : Adam Danz
le 23 Juin 2020
Check out linkaxes and linkprop. Use them to set the axis limits and, if needed, other axis properties between two axes.
The reason why your set() command didn't work is because you need to specify the axis handle.
set(app.UIAxes,'DataAspectRatio',[10 1 1])
% ^^^^^^^^^^ or whatever your axis handle is
2 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!