sums with for loop
2 views (last 30 days)
Show older comments
Alonso Mukendi Kalonji
on 29 Oct 2022
Commented: Alonso Mukendi Kalonji
on 30 Oct 2022
I am beginner in matlab, and i struggly to resolve some exercice. can I have some advice according to this task?
1-1/3+1/5-1/7+1/9-..-1/1003
0 Comments
Accepted Answer
David Hill
on 29 Oct 2022
n=1:502;
s=sum((-1).^(n+1)./(2*n-1))
7 Comments
Torsten
on 29 Oct 2022
Maybe of interest:
syms n
s = simplify(symsum((-1)^n/(2*n+1),0,Inf))
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements 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!