How to write a program to find the Factorial for a series of number
2 views (last 30 days)
Show older comments
Mohamed Rashad
on 25 Sep 2021
Answered: Star Strider
on 25 Sep 2021
If I wanted to find the Factorial for 1/1! + 2/2! + 3/3! ...+ n/n!. How to take the series as user input and display the output.?
0 Comments
Accepted Answer
Star Strider
on 25 Sep 2021
Take advantage of MATLAB’s vectorisation capability —
N = 10;
ff = (1:N) ./ cumprod(1:N)
ffsum = sum(ff)
Make appropriate changes to get different results.
.
0 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!