填表源代码
function [out, nErrors, BER, BERtheory] = Rayleigh_BPSK(R, doppler, bitseq, SNR)
R=100000;
doppler=100;
chan = rayleighchan(1/R, doppler); %产生一个平坦的瑞利信道
chan.StoreHistory = true;%记忆信道特征
h= modem.pskmod(2); % 调制
bitseq=randint(10000,1); % 随机序列
s =modulate(h, bitseq);%调制?
y = filter(chan,s); % 信号通过信道
y = y.*exp(-1*j*angle(chan.PathGains));%相位补偿