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

通讯编程文档

开发平台:

Matlab

  1. function [y] = bdt_int(x,snr_per_bit,M)
  2. % [y]=bdt_int(x,snr_per_bit,M)
  3. % BDT_INT  is used to compute the integrand needed in the
  4. %    computaion of the error probability of orthogonal signals 
  5.    
  6. N=length(x);
  7. for i=1:N,
  8.    y(i)=(1/sqrt(2*pi))*(1-(1-Qfunct(x(i)))^(M-1))*exp(-(x(i)-sqrt(2*log2(M)*snr_per_bit))^2/2);
  9. end;