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 月 25 日
I want to write a script which produces the polynomial interpolating the function f(x) = sin(4x) at the points x0 = 1, x1 = 3, x2 = 3.5, x3 = 4.0 by using the Lagrange form of the interpolating polynomial!!!!!!
  3 件のコメント
Anas Gharsa
Anas Gharsa 2022 年 1 月 22 日
thank you so much!!
Anas Gharsa
Anas Gharsa 2022 年 1 月 25 日
this is what i did
x= [0.9 1.5 2.4 2.6 2.8 3.1 3.5 3.8];
y= [1.0 0.8 1.3 6.2 9.3 6.0 2.1 -0.5];
plot(x,y,'ro');
hold on
p1 = polyfit(x,y,2);
coefficients = polyfit(x, y, 2);
yFit = polyval(coefficients, 2.5);
but it shows like this
why ??did i do something wrong ??

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

採用された回答

KSSV
KSSV 2022 年 1 月 22 日

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMathematics and Optimization についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by