trend line calculation and display
369 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nello Troccia
il 17 Ott 2011
Commentato: Alex Backer
il 1 Giu 2020
Hi, how can I obtain and display a trend line from some points? I need the equation of the trend line. Thanks
Risposta accettata
Harry MacDowel
il 17 Ott 2011
First, plot the data like usual.
Then go to Tools -> Basic Fitting
Choose one of the fittings you like, then check Show Equation
Remember to click the Right Arrow key at the bottom right to view the values of the coefficients for the fit.
0 Commenti
Più risposte (2)
Sarah Weihmann
il 14 Mar 2017
Hi Aravind S,
try the fit command for trendline calculation: http://de.mathworks.com/help/curvefit/fit.html Display the equation y=m*x+n as >> m=3; >> n=4; >> legend(sprintf('y=%f*x+%f',m,n));
Cheers, S
0 Commenti
aravind S
il 9 Feb 2017
Is there command available?
1 Commento
Vedere anche
Categorie
Scopri di più su Least Squares 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!