undefined function or variable bits---UMFC vs ODFM
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
kenny Ade
am 4 Mai 2020
Kommentiert: kenny Ade
am 7 Mai 2020
hi Peng Li,
please see the code in the link , , , http://www.mathworks.com/help/comm/examples/ufmc-vs-ofdm-modulation.html
ERROR IN UMFC ?((LINE 37)
InpData(:symIdx) = randi({0 1}, 10*bits, 1);
Code not running!!!
please assist
2 Kommentare
Walter Roberson
am 7 Mai 2020
The first parameter to randi should be a numeric scalar, or else a numeric vector with two elements. So randi({0 1}, 10*bits, 1) is wrong because you are passing in a cell instead of a numeric vector, but randi([0 1], 10*bits, 1) might work to assign to inpData(:,symIdx)
Akzeptierte Antwort
Samatha Aleti
am 7 Mai 2020
Hi,
I do not see the line of code you mentioned in the above link, but I assume you are pointing to the following line of code:
inpData(:,bandIdx) = bitsIn; % log bits for comparison
Here “bitsIn” is defined as a vector of bits (randomly generated) whose size depends upon number of bites per carrier “bitsPerSubCarrier” and “subbandSize”, as follows:
subbandSize = 20; % must be > 1
bitsPerSubCarrier = 4; % 2: 4QAM, 4: 16QAM, 6: 64QAM, 8: 256QAM
bitsIn = randi([0 1], bitsPerSubCarrier*subbandSize, 1);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Test and Measurement 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!