i am new to matlab and i want to learn, can anyone help me with this please!!!!

1 回表示 (過去 30 日間)
Anas Gharsa
Anas Gharsa 2022 年 1 月 22 日
コメント済み: Anas Gharsa 2022 年 1 月 23 日
I want to compute and plot the regression polynomial of degree 2 for some datapoints and than I want to estimate the value of the function at the point x¯ = 2.5 by using the obtained regression polynomial of degree 2
  3 件のコメント
John D'Errico
John D'Errico 2022 年 1 月 22 日
編集済み: John D'Errico 2022 年 1 月 22 日
Since this is surely a homework problem, what have you tried? Why not use polyfit? If you have no idea how to use that tool, and cannot read the help, then you need to read the manuals. Spend some time with the various tutorials. The point being, there are plenty of simple tutorials to be found, and what you are asking for is already written up in the help.
Anas Gharsa
Anas Gharsa 2022 年 1 月 23 日
actually it is kind of practice for me it is not a home work!! like i said i am new to this!! all i am asking is some direction. however thank you for the answer

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2022 年 1 月 22 日
See my attached demo for polyfit. It will be easy for you to adapt it.
coefficients = polyfit(x, y, 2);
yFit = polyval(coefficients, 2.5);

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by