8 lines
251 B
Matlab
8 lines
251 B
Matlab
function output = updatecfgMUMIMO(input)
|
|
load ('TXPackets\NDPfeedback.mat')
|
|
% Apply the steering matrix to the RU
|
|
input.RU{1}.SpatialMapping = 'Custom';
|
|
input.RU{1}.SpatialMappingMatrix = steeringMatrix;
|
|
|
|
output = input;
|
|
end |