function UE_resource_assignment = get_max_UEs(obj,metric_matrix,UE_assignment)
% Scans a nUExM matrix and returns for each column the index of
% the highest value. In case more than one UE has the same
% metric value, one of these ones is randomly selected. Assume
% all values to be non-negative and 0 as “out-of-range”
max_metric = max(metric_matrix,[],1);
UE_resource_assignment = zeros(length(max_metric),1);
Hi there,
There is a function named get_max_UEs in ltescheduler.m file. I need to know about metric_matrix. how was it generated? Do you have any flowchart?
Thanks