How can I use curve fitting tool as function?
이전 댓글 표시
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

채택된 답변
추가 답변 (1개)
Walter Roberson
2019년 4월 5일
results = fit([x2e(:), x1e(:)], ye(:), 'poly11');
coeffs(results)
댓글 수: 2
Walter Roberson
2019년 4월 5일
results = fit([x2e(:), x1e(:)], ye(:), 'poly11', 'Robust', 'LAR');
coeffs(results)
Riyadh Muttaleb
2019년 4월 5일
카테고리
도움말 센터 및 File Exchange에서 Interpolation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!