For and while loops

8 views (last 30 days)
Danny Maefengea
Danny Maefengea on 22 Jun 2020
Commented: Walter Roberson on 22 Jun 2020
Hi everyone,
How can I write a Matlab function that takes an input integer n and computes the following
n!=n×(n1)×(n2)×2×1 by using:
The while loop and name it getFacWhile(n).
The for loop and name it getFacFor(n).

Accepted Answer

Ashish Azad
Ashish Azad on 22 Jun 2020
function F = getFacWhile(n)
F=1;
while n>1
F=F*n;
n=n-1;
end
end
function F = getFacWhile(n)
F=1;
for i=1:n
F=F*i;
end
end
  1 Comment
Walter Roberson
Walter Roberson on 22 Jun 2020
We recommend against providing complete solutions to homework problems.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!