superimpose a line of slope (-5/3) on a log-log graph

조회 수: 5 (최근 30일)
Mindy
Mindy 2022년 4월 20일
댓글: Davide Masiello 2022년 4월 20일
Hello everybody,
Do you know how to draw a straight line with a certain slope on a log-log graph please?
Here what I want to do:
Thank you in advance,

답변 (1개)

Davide Masiello
Davide Masiello 2022년 4월 20일
편집: Davide Masiello 2022년 4월 20일
See example below
clear,clc
x = [1e1,1e4];
slope = -3/5;
offset = 1;
y = slope*x+offset;
loglog(x,y,'--r')
  댓글 수: 2
Mindy
Mindy 2022년 4월 20일
Thank you very much for your answers. So I try to modify my code like this:
x = [1e1,1e4];
slope = -3/5;
offset = 10;
y = slope*x+offset;
figure
loglog(freq,PSD,x,y)
But the slope doesn't appear... Do you know why?
Davide Masiello
Davide Masiello 2022년 4월 20일
Could you please share all of your code?

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

카테고리

Help CenterFile Exchange에서 Graphics Object Properties에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by