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

4 visualizzazioni (ultimi 30 giorni)
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,

Risposte (1)

Davide Masiello
Davide Masiello il 20 Apr 2022
Modificato: Davide Masiello il 20 Apr 2022
See example below
clear,clc
x = [1e1,1e4];
slope = -3/5;
offset = 1;
y = slope*x+offset;
loglog(x,y,'--r')
  2 Commenti
Mindy
Mindy il 20 Apr 2022
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 il 20 Apr 2022
Could you please share all of your code?

Accedi per commentare.

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by