modify code for polynomial function

5 次查看(过去 30 天)
i try to modify this code but can't pass .please help with proper code
function fh = poly_fun(p)
function polynomial = poly(x)
polynomial = 0;
ii = 1:length(p)
polynomial = polynomial + p(ii).*x.^(ii-1);
end
fh = @poly;
end
  2 个评论
Rik
Rik 2020-9-8
Unforturnately for Mohaiminul Islam Google cache takes some time to update, so the evidence of his attempt to cheat is foiled. A permalink to what he posted can be found here (will take a few hours to become available).
Removing your question after receiving an answer and help is extremely rude. It is also pointless, because of comments like this enable your teacher to find your post, and because site admins can often restore your edit.

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2020-9-7
编辑:KSSV 2020-9-8
n = length(p)-1 ; % degree of polynomial
val = sum(p.*(x.^(n:-1:0)))
  11 个评论
KSSV
KSSV 2020-9-8
There should be sum. I missed it and Walter Roberson pointed it. Hat's off to Walter Roberson for your patience.
Mohaiminul Islam
Mohaiminul Islam 2020-9-8
@walter roberson
Thanks for helping and show me the path
did some silly mistake . just passed the assignment

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by