Borrar filtros
Borrar filtros

calculate the value of the following function

1 visualización (últimos 30 días)
mohamed samhy
mohamed samhy el 30 de Mzo. de 2022
Respondida: Ram el 22 de Feb. de 2024
Hi All,
i need to write a code to calculate the value of the following Sigma function:
thanks in advance
  4 comentarios
mohamed samhy
mohamed samhy el 30 de Mzo. de 2022
i cannot fully understand your comment, should i search those ?
Torsten
Torsten el 30 de Mzo. de 2022
Yes, you want to sum (look for "sum" in the MATLAB documentation) some terms involving factorials (look for "factorial" in the MATLAB documentation).

Iniciar sesión para comentar.

Respuestas (1)

Ram
Ram el 22 de Feb. de 2024
Hey Mohamed, this is a possible approach to do symbolic sum of series;
>> syms i;
>> symsum(((3^i)/factorial(i)), i, 0, 5);
Hope this helps.
-Ram.

Categorías

Más información sobre Programming en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by