Fitting Functions
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a Vector of Data. and i want to do a fitting to the Vector. but I want the fit to be in the shape of:
A/x+B/x^2+C/x^3...
is there any Known function I am missing?or do i need to write my own code. if so anyone is familiar with a good way to do that?
0 commentaires
Réponse acceptée
the cyclist
le 23 Jan 2012
If you have the Statistics Toolbox, you can use the function nlinfit() to do that.
0 commentaires
Plus de réponses (2)
Frederic Moisy
le 30 Jan 2012
Hi,
First solution: replace x by y=1/x, then use polyfit to fit your data with respect to y.
Second solution: install the Ezyfit toolbox, http://www.mathworks.com/matlabcentral/fileexchange/10176-ezyfit-2-40
and type
showfit ('A/x+B/x^2+C/x^3')
0 commentaires
Voir également
Catégories
En savoir plus sur Curve Fitting Toolbox 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!