How to find a polynomial of degree 2 that fits the given data with minimal approximation error? and then sketch discrete points and the graph of the polynomial

9 ビュー (過去 30 日間)
Suppose you have the following data: (0, 1.0000), (0.25, 1.2840), (0.50, 1.6487), (0.75, 2.1170) and (1.00, 2.7183) . Find a polynomial P (x) of degree 2 that fits the data with the minimal approximation error. Calculate this error. Then sketch these discrete points and the graph of the polynomial P(x) in a figure using MATLAB.

回答 (2 件)

the cyclist
the cyclist 2019 年 4 月 7 日
You could use the polyfit and plot commands (and of course a few more fundamental calculations like subtraction) to do this.

Stephan
Stephan 2019 年 4 月 7 日
編集済み: Stephan 2019 年 4 月 7 日
Hi,
polyfit does the job:
[p,S,mu] = polyfit(x,y,n)
in your case n=2.
Best regards
Stephan

カテゴリ

Help Center および File ExchangePolynomials についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by