modify code for polynomial function

5 visualizaciones (últimos 30 días)
Mohaiminul Islam
Mohaiminul Islam el 7 de Sept. de 2020
Comentada: Rena Berman el 9 de Oct. de 2020
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 comentarios
Rik
Rik el 8 de Sept. de 2020
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.
Rena Berman
Rena Berman el 9 de Oct. de 2020
(Answers Dev) Restored edit

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 7 de Sept. de 2020
Editada: KSSV el 8 de Sept. de 2020
n = length(p)-1 ; % degree of polynomial
val = sum(p.*(x.^(n:-1:0)))
  11 comentarios
KSSV
KSSV el 8 de Sept. de 2020
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 el 8 de Sept. de 2020
@walter roberson
Thanks for helping and show me the path
did some silly mistake . just passed the assignment

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by