如何使用MATLAB rayleighchan 函數產生瑞利信道

瑞利信道的產生主要有兩種方法:正弦波疊加法成型濾波法

MATLAB自帶了 rayleighchan 函數來產生時變瑞利信道,據說用的是Jakes頻域反變換方法來產生時間相關性的瑞利模型。【見博客】

%Ts    the sample time of input signal, in seconds
%Fd    the maximum Doppler shift, in hertz
%tau   the vector of path delays, in seconds
%pdb   the vector of path gains, in dB

Fs=1000;            %採樣頻率
Ts=1/Fs;            %採樣間隔
Fd=500;             %Doppler頻偏,Hz
tau=[0,0.01;        %多徑延時向量,s
pdf=[0,0];          %多徑信道增益向量,dB
chan = rayleighchan(Ts, Fd, tau, pdb);

 衰落信道模型

信道模型分爲:數學模型  ->Zadeh, Bello 時變線性濾波器

                                         ->寬平穩非相關(WSSUS)信道                                                   

                         仿真模型  ->Clarke, Jakes 多徑疊加模型  ->Zheng 模型, Field 模型

                                         ->抽頭延時線模型

                                         ->Peter, Hoeher 蒙特卡洛模型

                                         ->基於KL展開

相關鏈接

1. https://blog.csdn.net/shenjun1992722/article/details/50193381

2. https://blog.csdn.net/mike190267481/article/details/7359576

3. https://blog.csdn.net/caozhk/article/details/19929435

4. https://max.book118.com/html/2017/1107/139307446.shtm

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章