NAN problem in loop
Mostra commenti meno recenti
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 Commenti
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
il 5 Mag 2021
Risposte (1)
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
