How to implement multipath fading channels using Phased Array System toolbox?
83 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I am currently using the phased.Radiator, phased.FreeSpace and phased.Collector system objects from Phased Array System Toolbox for transmission and reception. Similar to the End-to-End radar system as in this example: http://www.mathworks.de/de/help/phased/gs/end-to-end-radar-system.html
Is it possible to combine this with the 'rayleighchan' or 'ricianchan' available from Communications System toolbox? I want to add frequency selective multipath behavior to the Free Space environment. Maybe my approach is wrong. Please correct me in this case. Any ideas on how to implement this?
Thanks, Jenny
0 件のコメント
回答 (1 件)
Honglei Chen
2014 年 9 月 18 日
In theory you should be able to cascade the two channels together. The FreeSpace channel in Phased Array System Toolbox basically models the large scale fading yet rayleighchann models the small scale fading. Here is a simple result with some randomly selected parameters. I hope this can be helpful to you.
myWav = phased.RectangularWaveform('PulseWidth',1e-5);
myChannel1 = phased.FreeSpace;
myChannel2 = rayleighchan(1/myWav.SampleRate,100);
myChannel2.PathDelays = [0 2e-5 5e-5];
N = round(myWav.SampleRate/myWav.PRF);
t = (0:(N-1))/myWav.SampleRate;
x = step(myWav);
xt = step(myChannel1,x,[0;0;0],[2000;0;0],[0;0;0],[0;0;0]);
xt = filter(myChannel2,xt);
figure;
subplot(211); plot(t,abs(x));
subplot(212); plot(t,abs(xt));
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with Phased Array System Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!