I need the algorithm behind polyfit function in Matlab
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, I need the algorithm behind polyfit function of matlab. I have a 3rd order polynomial curve. I need to find a polynomial best fit for the curve. kindly help me with the algorithm n procedure. Reply me to agsagastheesh@gmail.com. Thank you.
0 Commenti
Risposte (1)
Walter Roberson
il 26 Giu 2012
Algorithms
The polyfit MATLAB file forms the Vandermonde matrix, V, whose elements are powers of x. v(i,j) = x(i)^(n-j)
It then uses the backslash operator, \, to solve the least squares problem Vp≅y.
You can modify the MATLAB file to use other functions of x as the basis functions.
0 Commenti
Vedere anche
Categorie
Scopri di più su Linear and Nonlinear Regression 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!