2021-02-09 MATLAB 中计算 阶乘的函数

MATLAB 中计算 阶乘的函数: factorial (n),   其中,n ≥ 0的整数。计算公式为:

C_n^k = \frac{n!}{(n-k)!k!}

example:

result = factorial(1:5)
result =
     1     2     6    24   120

你可能感兴趣的:(生理信号分析,算法)