How to modify range of loglog scale?

14 次查看(过去 30 天)
K3iTH
K3iTH 2021-10-5
评论: Mathieu NOE 2021-10-25
Hi all,
I am plotting my graph use loglog(x,y) and my setting for the log plot is shown below, but that does not provide the output I need as shown as in the figures. I can obtained the log scale for y-axis easily but I have problem to get the log scale for x-axis with a step of 5.
Thank you for you helps. I truly appreciate it.
loglog(x,y);
set(gca,'XLim',[0 30]);
set(gca,'YLim',[1e-1 1e1]);
set(gca,'XTick',10.^(0:1));
set(gca,'YTick',10.^(-1:1));
set(gca,'XMinorTick','on','YMinorTick','on')

回答(1 个)

Mathieu NOE
Mathieu NOE 2021-10-5
hello
suggestion below :
x = (0.1:0.1:50);
y = 0.1+0.1*exp(0.1*x);
xmax= 30;
dx = 5;
loglog(x,y);
set(gca,'XLim',[1e-1 xmax]);
set(gca,'YLim',[1e-1 1e1]);
set(gca,'XTick',[1e-1 1 (dx:dx:xmax)]);
set(gca,'YTick',10.^(-1:1));
set(gca,'XMinorTick','on','YMinorTick','on')

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by