Universidade Federal Fluminense-Volta Redonda, RJ, Brasil
Diomar Cesar
Dept. Ciências Exatas - Exact Science Dept.
Search
factorl.m
function [x]=factorl(i)
%factorl(i) gives the factorial of the nearest integer to number 'i'
%'i' should be an integer so we will round it to the nearest one
x=round(i);
if x>2
for j=x-1:-1:2
x=x*j;
end
end