Effacer les filtres
Effacer les filtres

calculate the value of the following function

1 vue (au cours des 30 derniers jours)
mohamed samhy
mohamed samhy le 30 Mar 2022
Réponse apportée : Ram le 22 Fév 2024
Hi All,
i need to write a code to calculate the value of the following Sigma function:
thanks in advance
  4 commentaires
mohamed samhy
mohamed samhy le 30 Mar 2022
i cannot fully understand your comment, should i search those ?
Torsten
Torsten le 30 Mar 2022
Yes, you want to sum (look for "sum" in the MATLAB documentation) some terms involving factorials (look for "factorial" in the MATLAB documentation).

Connectez-vous pour commenter.

Réponses (1)

Ram
Ram le 22 Fév 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.

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by