Borrar filtros
Borrar filtros

Taylor series while loop

1 visualización (últimos 30 días)
George  Zimbodia
George Zimbodia el 24 de Sept. de 2014
Comentada: George Zimbodia el 25 de Sept. de 2014
Thanks for the help!

Respuesta aceptada

Guillaume
Guillaume el 24 de Sept. de 2014
You code is quite good. You made three error:
  • the sign of term must change at each iteration
  • in term again, the power of x is odd (2*k+1)
term = (-1)^k * x^(2*k+1)/factorial(2*k+1);
  • Pn is the result you're calculating. It's what you want to display, not term.
  1 comentario
George  Zimbodia
George Zimbodia el 25 de Sept. de 2014
Thank you! and I forgot to change the disp(term) to disp(Pn) on my original question even though I had did so on my code!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by