Qfunct.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:0k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. function [y]=Qfunct(x)
  2. % [y]=Qfunct(x)
  3. % QFUNCT  evaluates the Q-function. 
  4. %    y = 1/sqrt(2*pi) * integral from x to inf of exp(-t^2/2) dt.
  5. %      y = (1/2) * erfc(x/sqrt(2)).
  6. y=(1/2)*erfc(x/sqrt(2));