Factorial without the Command
51 次查看(过去 30 天)
显示 更早的评论
I am struggling to figure out how to compute a factorial without the use of the command. My task is to input a nonnegative integer and have the program compute its factorial.
Here is what I have for my script so far.
function Factorial = ex1(n)
%
%
if n = 0
Factorial = 1;
elseif n >= 1
Factorial = n(n-1)(n-2)(n-3)(3)(2)(1);
end
This program does not run, however I do not know where to go from here.
0 个评论
回答(4 个)
James Tursa
2020-9-17
编辑:James Tursa
2020-9-17
You could use either use a loop to multiply all of the numbers from 1 to n, or use recursion to multiply n by the factorial of n-1 (with some method of stopping the recursion). Were you instructed to use one of these methods? You could also use some different MATLAB functions for this, but I am not sure which ones would be allowed for your homework.
Asad (Mehrzad) Khoddam
2020-9-17
function f = Factorial(n)
%
%
if n = 0 || n = 1
f = 1;
elseif n >= 1
f = n * Factorial(n-1);
end
1 个评论
William
2020-9-17
function f = Factorial(n)
%
if n = 0 || n = 1
f = 1;
elseif n >= 1
a = 1:n;
f = prod(a);
end
4 个评论
Rik
2020-9-17
A comment posted after you posted your answer confirmed my suspicion. If you thought this wasn't a homework assignment, why didn't you post the best solution: using the built-in factorial function.
The link you posted did not look like homework to me, although I see how it might be. That user also showed willingness to put in their own effort, and they posted that a hint would also suffice. If that one is a homework question, it is a complex one, and getting help here is a valid strategy.
I would question the usefulness of posting several answers on what is obviously a homework question, if only because the OP has posted a statement to that effect.
I have the option to delete answers, but I chose to not use it if there is at least the suggestion that reasonable people might disagree. If you actually think it isn't a homework question, then you should at least try to answer the question such that you use optimal code.
PS I'll probably move your comment and this one to your answer, because that is what we are discussing.
Asad (Mehrzad) Khoddam
2020-9-17
From the initial code, I thoughed that he wants to use a recursive function. So I modified the second part of the code. Later after seeing your comment and the code of the others, I noticed that he wants to use basic operations. That's all I did and thank you for your comment about being more carefull.
Asad (Mehrzad) Khoddam
2020-9-17
Using only basic operations:
function f = Factorial(n)
%
% initial value, 0! and 1!
f = 1;
if n > 1
for i=2:n
f = f * i;
end
end
1 个评论
Stephen23
2020-9-17
The if statement is superfluous: that for loop will only iterate for n>=2 anyway.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!