How does MATLAB structure the path gain matrix that the step function outputs for the LTEMIMO object?

2 ビュー (過去 30 日間)
I am developing a sphere decoder for a MIMO-CDMA communication system. In order for it to operate correctly the channel must be represented as a matrix. MATLAB outputs a vector of path gains corresponding to each discreet path for each Nt-Nr link. Is there any way to align the vectors (path gains) so that the filtering operation performed by the step function may be represented by a single matrix multiplication:
Y = HX,
where H channel, x is the input and y is the output?

回答 (1 件)

Yue Shang
Yue Shang 2013 年 9 月 11 日
You have the Y = HX format only when the channel is static and has one discrete path. Here is an example:
>> hChan = comm.MIMOChannel('MaximumDopplerShift', 0, 'PathGainsOutputPort', true);
>> X = rand(10, 2);
>> [Y, H] = step(hChan, X);
>> disp(Y - X*squeeze(H(1,1,:,:))) % Verify Y = X*H
The H is a 10x1x2x2 array, but it repeats along the first dimension (time domain) because the channel is static (MaximumDopplerShift property is 0).
For comm.LTEMIMOChannel, you may not be able to do this because all the channel profiles have a non-zero Doppler shift. You can try to configure an equivalent comm.MIMOChannel to model LTE in this case.
  1 件のコメント
hussain ali
hussain ali 2013 年 12 月 13 日
how obtain LTE System Toolbox please help me i waiting this for 2 month but no result can you help me please ????

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

カテゴリ

Help Center および File ExchangeLTE Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by