Calculation of Factorial using Recursive Relation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
onsagerian
am 31 Jul. 2018
Kommentiert: onsagerian
am 13 Aug. 2018
Hello,
I have tried to construct a code using a "function" that contains a "recursive relation", but was not able to complete it. The following Matlab code is designed to compute 10!. Would you help me to find out the solution?
n=10;
f=@recursion; <===?
function y=recursion(n)
y=n*recursion(n)
end
0 Kommentare
Akzeptierte Antwort
James Tursa
am 1 Aug. 2018
You need the proper formula first:
y = n * recursion(n-1);
But also you need to figure out how to stop the recursion and simply return a number. I will let you work that out.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Software Development Tools finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!