For/if loop for adding up only odd numbers
Afficher commentaires plus anciens
Hi,
We're supposed to write a loop (it must be a loop!) to calculate the following expression (see attached image). We're supposed to only sum the values that correspond to odd values of n.
This is what I got so far but I don't know how to specifiy that only only odd values for n are added.
for n = 1:100
c(n) = (1/(n^2));
sum(c);
end
Can anybody help me with that please?
Thanks,
Debbie
Réponses (1)
Yongjian Feng
le 9 Nov 2021
Modifié(e) : Yongjian Feng
le 9 Nov 2021
You mean this?
for n = 1:100
if mod(n,2) == 1
c = (1/(n^2));
sum(c);
end
end
2 commentaires
Dobs
le 9 Nov 2021
Yongjian Feng
le 9 Nov 2021
Modifié(e) : Yongjian Feng
le 9 Nov 2021
Little bit different for negative value. Same for positive:
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!