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

传真(Fax)编程

开发平台:

Matlab

  1. function impr_of_np = improv_fac (np, pfa, pd)
  2. % This function computes the non-coherent integration improvment
  3. % factor using the empirical formula defind in Eq. (4.54)
  4. fact1 = 1.0 + log10( 1.0 / pfa) / 46.6;
  5. fact2 = 6.79 * (1.0 + 0.235 * pd);
  6. fact3 = 1.0 - 0.14 * log10(np) + 0.0183 * (log10(np))^2;
  7. impr_of_np = fact1 * fact2 * fact3 * log10(np);
  8. return