How to find sum using single statement?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Airas Akhtar
il 27 Ott 2014
Modificato: Mischa Kim
il 27 Ott 2014
I had to find the sum of the series 1/2+(1/2)^2+....(1/2)^100
why does my code not work?
(ones(1,100).*1/2).^([1:100])
it gives the answer zero.
0 Commenti
Risposta accettata
Mischa Kim
il 27 Ott 2014
Modificato: Mischa Kim
il 27 Ott 2014
Airas, use
f = sum(arrayfun(@(x) 0.5^x,1:100))
or, with your approach, add the sum()
f = sum((ones(1,100).*1/2).^([1:100]))
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dynamic System Models in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!