Wha'ts wrong with this?
이전 댓글 표시
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))
Inputs must be floats, namely single or double.
채택된 답변
추가 답변 (1개)
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
2020년 11월 28일
Image Analyst
2020년 11월 28일
Fine, but do it numerically, not symbolically, like Alan and I told you.
Car Ma
2020년 11월 28일
카테고리
도움말 센터 및 File Exchange에서 Common Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!