Frequency Selective Channel Coefficients in MATLAB

7 ビュー (過去 30 日間)
S. David
S. David 2014 年 3 月 18 日
コメント済み: S. David 2014 年 3 月 20 日
Hello all
How can I generate the following channel coefficients in MATLAB, where these coefficients correspond to a frequency selective channel:
f_m=sum_p h_p exp(-j*2*pi*fc*tau_p) g(mTs-tau_p), m=0,1,...,L-1
where g(t) is rectangular pulse of support duration Ts, and h_p, tau_p and fc are given.
Thanks in advance
  1 件のコメント
Youssef  Khmou
Youssef Khmou 2014 年 3 月 18 日
編集済み: Youssef Khmou 2014 年 3 月 18 日
you have to change the title so that the specialists in the field will answer, put as example " radiation pattern" ," collected signals"..

サインインしてコメントする。

採用された回答

Youssef  Khmou
Youssef Khmou 2014 年 3 月 18 日
編集済み: Youssef Khmou 2014 年 3 月 18 日
here is a start :
Fs=800;
fc=300; % Hz
Ts=1/Fs;
L=400;
t=0:Ts:(L-1)*Ts;
d=4; % four signals per example,
tau is dependent on physical parameters, distance and coordinates, but i consider here a linear progressive phase, and the signals are sinusoidal :
tau=(0:d-1);
fm=0;
for p=1:d
fm=fm+exp(-j*2*pi*fc*tau(p))*sin(2*pi*t);
end
figure; plot(real(fm));
your assignment now is to replace the sin signals with the rectangular ones .
  9 件のコメント
Youssef  Khmou
Youssef Khmou 2014 年 3 月 20 日
if the problem is solved, accept the answer.
S. David
S. David 2014 年 3 月 20 日
Thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWaveform Generation についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by