【MATLAB】用MATLAB编写阶乘函数,并调用该函数来生成一个1!,...,10!的阶乘表。

function p = factorial()
p=1;
for a=1:10
for i=1:a
    p=p*i;
end;
p
p=1;
end
end

【MATLAB】用MATLAB编写阶乘函数,并调用该函数来生成一个1!,...,10!的阶乘表。_第1张图片

你可能感兴趣的:(用MATLAB编写阶乘函数)