How can I use curve fitting tool as function?
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
その他の回答 (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)
参考
カテゴリ
Help Center および File Exchange で Interpolation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!