How to modify range of loglog scale?

조회 수: 19 (최근 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')
  댓글 수: 2
Mathieu NOE
Mathieu NOE 2021년 10월 12일
Hi
problem solved ?
Mathieu NOE
Mathieu NOE 2021년 10월 25일
hello again
problem solved ?

댓글을 달려면 로그인하십시오.

카테고리

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