factor.m
上传用户:szahd2008
上传日期:2020-09-25
资源大小:1275k
文件大小:0k
源码类别:

传真(Fax)编程

开发平台:

Matlab

  1. function [val] = factor(n)
  2. % Compute the factorial of n using logarithms to avoid overflow.
  3. format long
  4. n = n + 9.0;
  5. n2 = n * n;
  6. temp = (n-1) * log(n) - n + log(sqrt(2.0 * pi * n)) ...
  7.    + ((1.0 - (1.0/30. + (1.0/105)/n2)/n2) / 12) / n;
  8. val = temp - log((n-1)*(n-2)*(n-3)*(n-4)*(n-5)*(n-6) ...
  9.    *(n-7)*(n-8));
  10. return  
  11.    
  12.