Mostrar comentarios más antiguos
hi guys ,I am try to solve numerical question.I try to finish my loop till when I get result less then error which I want(10^-12).Why I get NAN values.Thanks.
2 comentarios
Are you sure your formula is correct? The terms diverge:
for n = 0:50
term(n+1) = ((((-1)^n)*(pi/3)^(2*n+1))/(2*n+1));
end
h = plot(term,'.-');
set(h,'MarkerSize',14)
It's an alternating series, so it could still converge, but will be slow. But I also looked at the sum of pairs of terms, and those look to diverge as well. (Admittedly, it has been long while since I have thought about series convergence.)
Where did you get the formula from?
emre arat
el 5 de Mayo de 2021
Respuestas (1)
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
