ber.m

来自「CR协作频谱感知仿真」· M 代码 · 共 28 行

M
28
字号
function [y]=ber(snr,modulation_type,fading_type);
%根据调制方式和衰落方式计算单链路ber

switch fading_type
    case 'Rayleigh'
        switch modulation_type
            case 'BPSK'
                y=(1-sqrt(snr./(1/2+snr)))/2;
            case 'QPSK'
                y=(1-sqrt(snr./(1+snr)))/2;
            otherwise
                error(['Modulation-type unkonwn:',modulation_type]);
        end
        
    case 'no'
        switch modulation_type
            case 'BPSK'
                y=q(sqrt(2*snr));
            case 'QPSK'
                y=q(sqrt(snr));
            otherwise
                error(['Modulation-type unkonwn:',modulation_type]);
        end
    otherwise
        error(['Fading-type unknown:',fading_type]);
end
                
              

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?