how to set a aspect ratio in the plot

How can I make the Y axies similer to the below graph
I tried to use ylim but i want the limit from 0.01 .1 1 10 100
I'm using loglog plotting

1 commentaire

loglog should use a log scale for the y axis. Do you mean that you want to change the y tick labels to no longer use 10^n formatting?
ax = axes;
loglog(ax, logspace(1,8,10), logspace(-2,2,10));
ax.YTickLabel = ax.YTick;

Connectez-vous pour commenter.

Réponses (2)

Star Strider
Star Strider le 10 Mai 2020

0 votes

Use the axis function.

2 commentaires

ali altammar
ali altammar le 10 Mai 2020
Thank you for you answer
but I want the scale to be from 0.01 .1 1 10 100
Star Strider
Star Strider le 10 Mai 2020
I did not understand what you were asking.
Use the semilogy function for your plot. It will plot the y-axis logarithmically.

Connectez-vous pour commenter.

Ameer Hamza
Ameer Hamza le 10 Mai 2020
Modifié(e) : Ameer Hamza le 10 Mai 2020

0 votes

2 commentaires

ali altammar
ali altammar le 10 Mai 2020
This is for graph ratio right?
I want the plot , y axis to be 0.01 .1 1 10 100
This is for the aspect ratio between the x and y-axis. If you want to change the scale of one axis, then you can either use semilogy to plot the curve or set the scale after the creation of axes
set(gca, 'YScale', 'log')

Connectez-vous pour commenter.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by