How can I extrapolate the value for the slope of the line?

7 visualizzazioni (ultimi 30 giorni)
I have a loglog plot with a line that contains 5 data points. Is there a way to extrapolate the value of the slope of the line? The slope of the line is the value I need for my equation. Thanks in advanced for your help.
  3 Commenti
Adam Danz
Adam Danz il 10 Gen 2020
This is linear in log scale so you can follow Matt J's advice by using polyfit and log transforms.
birdnerd007
birdnerd007 il 10 Gen 2020
Thanks Adam, I realized I posted the wrong graph, but it looks nearly the same.

Accedi per commentare.

Risposta accettata

Matt J
Matt J il 10 Gen 2020
Modificato: Matt J il 10 Gen 2020
You could do,
p=polyfit(log(x),log(y),1);
slope=p(1);

Più risposte (0)

Categorie

Scopri di più su Log 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