'Polyfit' vs 'Detrend' function
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ashfaq Ahmed
le 7 Août 2023
Réponse apportée : Star Strider
le 7 Août 2023
Hi al, I have a quick question regarding how does the 'Detrend' function work. Is it a linear regression method? And If we want to detrend a data set, will they both give us the same result?
0 commentaires
Réponse acceptée
Star Strider
le 7 Août 2023
It can be linear although polynomial trends are permitted. To visually understand how it works, see the documentation section on Continuous Linear Trend.
If you apply the polyfit result the same way as detrend does, they will likely give the same result. The advantage to detrend is that it does all that with one call, specifying the dependent variable and the polynomial degree being the only requirements. (It also has additional options.)
(I generally use polyfit and polyval to detrend a baseline, using polyfit to fit the polynomial to the results of calling the islocalmin function with the dependent variable, and then using polyval with that polynomial on the entire independent variable vector to get the detrending vector.)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Polynomials dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!