Compute the following sum for any given x and positive integer n.
Here m! denotes the factorial of m, which the product of all natural numbers upto m. Thus,
2! = 1x2 = 2
3! = 1x2x3 = 6
5! = 1x2x3x4x5 = 120
Avoid using for/while loops.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers49
Suggested Problems
-
Find the largest value in the 3D matrix
1680 Solvers
-
Create a Multiplication table matrix...
695 Solvers
-
Celsius to Fahrenheit converter
672 Solvers
-
Sum the numbers on the main diagonal
616 Solvers
-
Matlab Basics - Convert a row vector to a column vector
683 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
You should use tolerance based test-suites and not isequal while dealing with floats.
A tolerance has been added to the test suite.