calculate the value of the following function

1 view (last 30 days)
mohamed samhy
mohamed samhy on 30 Mar 2022
Answered: Ram on 22 Feb 2024
Hi All,
i need to write a code to calculate the value of the following Sigma function:
thanks in advance
  4 Comments
mohamed samhy
mohamed samhy on 30 Mar 2022
i cannot fully understand your comment, should i search those ?
Torsten
Torsten on 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).

Sign in to comment.

Answers (1)

Ram
Ram on 22 Feb 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.

Categories

Find more on Programming in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!