首先,建立自定义函数文件factorial.m。具体代码如下:function f=factorial(n)if n==0 f=1; return;else f=n*factorial(n-1); %递归 return;end然后,命令窗口下,执行factorial(10) %计算 10!