ber2SNR_DAF.m
上传用户:cjx922
上传日期:2017-12-13
资源大小:205k
文件大小:1k
源码类别:

通讯编程

开发平台:

Matlab

  1. function [SNR]=ber2SNR_DAF(ber_srd,modulation_type,fading_type);
  2. %used for calculating SNR of DAF 
  3. switch fading_type
  4.     case 'no'
  5.         switch modulation_type
  6.             case 'BPSK'
  7.                 SNR=((qinv(ber_srd)).^2)./2;
  8.             case 'QPSK'
  9.                 SNR=qinv(ber_srd).^2;
  10.             otherwise
  11.                 error(['Modulation type unkonwn:',modulation_type])
  12.         end
  13.     case 'Rayleigh'         
  14.         switch modulation_type
  15.             case 'BPSK'
  16.                 SNR=(1-2.*ber_srd).^2./((ber_srd-ber_srd.^2).*8);
  17.             case 'QPSK'
  18.                 SNR=(1-2.*ber_srd).^2./((ber_srd-ber_srd.^2).*4);
  19.             otherwise
  20.                 error(['Modulation type unkonwn:',modulation_type])
  21.         end
  22.     otherwise
  23.         error(['Fading type unknown:',fading_type])
  24. end
  25.                 
  26.