Clear Filters
Clear Filters

Taylor series while loop

1 view (last 30 days)
George  Zimbodia
George Zimbodia on 24 Sep 2014
Commented: George Zimbodia on 25 Sep 2014
Thanks for the help!

Accepted Answer

Guillaume
Guillaume on 24 Sep 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 Comment
George  Zimbodia
George Zimbodia on 25 Sep 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!

Sign in to comment.

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!