Issue in a single layer multi Tx antennas PUSCH throughput example - 5G toolbox
Show older comments
In the 5G PUSCH Throughput example, there's an issue in a specific case.
I've been trying to simulate single layer transmission with multiple antennas without codebook precoding.
e.g.:
simParameters.NTxAnts = 2; % Number of transmit antennas
simParameters.NRxAnts = 2; % Number of receive antennas
simParameters.PUSCH.NumLayers = 1; % Number of PUSCH transmission layers
simParameters.PUSCH.TransmissionScheme = 'nonCodebook'; % Transmission scheme ('nonCodebook','codebook')
The problem is that the precding matrix
F = eye(pusch.NumLayers,simLocal.NTxAnts);
will be a single row matrix with the first element = 1;
F = [1 0];
This will cause the tx signal to be all 0s at the second antenna input, and only the first antenna will be active.
Is there a way to be able to use the multi tx antennas with single layer?
Accepted Answer
More Answers (0)
Categories
Find more on Link-Level Simulation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!