I'm very new and I can't detect what's wrong here. I would be very pleased if you could help me. Thanks!
syms x
f(x)=sin(x+1)*sqrt(x+1)
sym(polyfit([1,2,3,4],[f(1),f(2),f(3),f(4)],3))
Error using polyfit
Inputs must be floats, namely single or double.

 採用された回答

Alan Stevens
Alan Stevens 2020 年 11 月 28 日

2 投票

Try
f = @(x) sin(x+1)*sqrt(x+1);
p = polyfit([1,2,3,4],[f(1),f(2),f(3),f(4)],3);
x = 1:0.01:4;
y = polyval(p,x);
plot([1,2,3,4],[f(1),f(2),f(3),f(4)],'o',x,y)

3 件のコメント

Car Ma
Car Ma 2020 年 11 月 28 日
It worked! Thank you so much!
Image Analyst
Image Analyst 2020 年 11 月 28 日
Then can you please "Accept this answer" to give Alan reputation points to thank him for helping you. You can also click the Vote icons to vote for answers and award them additional reputation points.
Car Ma
Car Ma 2020 年 11 月 28 日
Done! thanks

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2020 年 11 月 28 日

1 投票

Like it says, x must be a double, not a sym. f is a sym since x was (I'm guessing since I don't have the Symbolic Toolbox.) So just don't define a at all, and don't put polyfit() into sym() either.

3 件のコメント

Car Ma
Car Ma 2020 年 11 月 28 日
X is the parameter of the f function, and im using the f(x) function to get the values for the polyfit. Im trying to do the Lagrange polynome interpolator.
Thanks!
Image Analyst
Image Analyst 2020 年 11 月 28 日
Fine, but do it numerically, not symbolically, like Alan and I told you.
Car Ma
Car Ma 2020 年 11 月 28 日
Ok!

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

質問済み:

2020 年 11 月 28 日

コメント済み:

2020 年 11 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by