Finding the slope of line
407 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Tarkan Canova
il 8 Nov 2018
Commentato: Syed Zubair shah
il 5 Apr 2022

I have to find slope of best line (acceleration). How can I find it ? I couldn't find any datas about it on the internet.
1 Commento
Stephen23
il 8 Nov 2018
"How can I find it ?"
By the definition of slope: the change in Y divided by the change in X.
Risposta accettata
KSSV
il 8 Nov 2018
If you have points: use slope formula:
m = (y2-y1)/(x2-x1) ;
Or, fit a straight line using polyfit
p = polyfit(x,y,1) ;
In the above p will be a 2x1 matrix, which gives slope and y intercept.
Or, if you have image and want coordinates from there slope use:
6 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!