Using loop to solve a summation

Respuestas (2)

Star Strider
Star Strider el 7 de Feb. de 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
Kevin Phung el 7 de Feb. de 2019
Editada: Kevin Phung el 7 de Feb. de 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 comentarios

Colby Jennings
Colby Jennings el 15 de Abr. de 2021
why x if there is no x in the equation
Ishmael Asad
Ishmael Asad el 23 de Abr. de 2021
x is just the variable that will store that whole summation

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 7 de Feb. de 2019

Comentada:

el 23 de Abr. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by