Azzera filtri
Azzera filtri

sums with for loop

3 visualizzazioni (ultimi 30 giorni)
Alonso Mukendi Kalonji
Alonso Mukendi Kalonji il 29 Ott 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

Risposta accettata

David Hill
David Hill il 29 Ott 2022
n=1:502;
s=sum((-1).^(n+1)./(2*n-1))
s = 0.7849
  7 Commenti
Torsten
Torsten il 29 Ott 2022
Maybe of interest:
syms n
s = simplify(symsum((-1)^n/(2*n+1),0,Inf))
s = 
Alonso Mukendi Kalonji
Alonso Mukendi Kalonji il 30 Ott 2022
I get it!
Thank you very much!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Function Creation in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by