Effacer les filtres
Effacer les filtres

how to set graph size

5 vues (au cours des 30 derniers jours)
zilai si
zilai si le 11 Mai 2019
Réponse apportée : Josh le 11 Mai 2019
hello everyone, I wonder how to change a graph like this:
into a graph like this
...

Réponse acceptée

Josh
Josh le 11 Mai 2019
I'd use daspect to change the aspect ratio of your axes:
% Create plot vectors
x = [0, 1, 2];
y = [1, 0, 0];
% Plot
plot(x,y);
% Change plot aspect ratio so 1 unit of x equals 2 units of y (and z)
daspect([1,2,2])

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by