How does MATLAB structure the path gain matrix that the step function outputs for the LTEMIMO object?
4 views (last 30 days)
Show older comments
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?
0 Comments
Answers (1)
Yue Shang
on 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 Comment
hussain ali
on 13 Dec 2013
how obtain LTE System Toolbox please help me i waiting this for 2 month but no result can you help me please ????
See Also
Categories
Find more on LTE Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!