编制计算阶乘的函数fun(n)=n! 是用MATLAB来编写

我想要程序
2024-11-14 16:03:29
推荐回答(2个)
回答1:

function y=fun(x)
s=1
for i=1:x
s=s*i
end
y=s

回答2:

matlab不是有阶乘操作符么