How can I use curve fitting tool as function?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Riyadh Muttaleb
am 5 Apr. 2019
Kommentiert: Riyadh Muttaleb
am 5 Apr. 2019
Hi everyone,
I want to use Curve fitting tool as in the picture below as Matalb function.Which is function I have to use in the my code to get same result.
Thanks in advance,
Riyadh
![CFT.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/212081/CFT.jpeg)
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 5 Apr. 2019
results = fit([x2e(:), x1e(:)], ye(:), 'poly11');
coeffs(results)
2 Kommentare
Walter Roberson
am 5 Apr. 2019
results = fit([x2e(:), x1e(:)], ye(:), 'poly11', 'Robust', 'LAR');
coeffs(results)
Siehe auch
Kategorien
Mehr zu Interpolation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!