Using loop to solve a summation
Afficher commentaires plus anciens
Is this correct

m=0
for m=0:1200
x=sum(1/factorial(m))
end
Réponses (2)
Star Strider
le 7 Fév 2019
No, because you need to subscript ‘m’ and sum ‘x’ in each iteration.
However you do not need the loop:
m=0:1200;
x=sum(1./factorial(m))
Kevin Phung
le 7 Fév 2019
Modifié(e) : Kevin Phung
le 7 Fév 2019
No, you need to increment m with each step and add each partial sum.
This is what you need:
x= 0
for m = 0:1200
x = x + 1/factorial(m(i))
end
2 commentaires
Colby Jennings
le 15 Avr 2021
why x if there is no x in the equation
Ishmael Asad
le 23 Avr 2021
x is just the variable that will store that whole summation
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!