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 Comment

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;

Sign in to comment.

Answers (2)

Use the axis function.

2 Comments

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

Sign in to comment.

Ameer Hamza
Ameer Hamza on 10 May 2020
Edited: Ameer Hamza on 10 May 2020

2 Comments

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')

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Asked:

on 10 May 2020

Commented:

on 10 May 2020

Community Treasure Hunt

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

Start Hunting!