about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/factorial.m
blob: 7eab9a5f64ba57ae168b134788f61c4e5434b204 (plain)
1
2
3
4
5
6
7
8
9
function x = factorial(n)
% FACTORIAL Compute n!
% x = factorial(n)

if n == 0
  x = 1;
else
  x = n*factorial(n-1);
end