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

4 vues (au cours des 30 derniers jours)
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?

Réponses (1)

Yue Shang
Yue Shang le 11 Sep 2013
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 commentaire
hussain ali
hussain ali le 13 Déc 2013
how obtain LTE System Toolbox please help me i waiting this for 2 month but no result can you help me please ????

Connectez-vous pour commenter.

Catégories

En savoir plus sur LTE Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by