How can I simulate a resource allocation?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
giancarlo maldonado cardenas
am 10 Nov. 2021
Kommentiert: giancarlo maldonado cardenas
am 10 Nov. 2021
Hi, I need help with creating code.
*************************************************
attached file
detected = vector of detected preambles.
the value of this vector is random, sometimes it can have 1 or ....... N values.
*************************************************
for example I have 50 resources available and I need to assign those resources to the detected preambles that would be the attached file (detected).
for example if I have 50 PRBs and I have 12 preambles in (detected) the algorithm would have to run only 12 times.
and if for example I had 10 PRBs and I have 12 preambles in (detected) the algorithm would only have to run 10 times, because there would be no more resources to allocate.
Thank you very much in advance
0 Kommentare
Antworten (1)
Sulaymon Eshkabilov
am 10 Nov. 2021
According to what you have stated in your exercise description and understood, this code can be written:
D = load('detected.mat');
if numel(PRBs)==50 && numel(D)>12
for ii=1:12
N(ii)=PRB(D(ii));
end
elseif numel(PRBs)==50 && numel(D)==12
for ii=1:12
N(ii)=PRB(D(ii));
end
else % numel(PRBs)==10 && numel(D)==12
for ii=1:10
N(ii)=PRB(D(ii));
end
end
Siehe auch
Kategorien
Mehr zu LTE Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!