undefined function or variable bits---UMFC vs ODFM
Mostra commenti meno recenti
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 Commenti
Walter Roberson
il 4 Mag 2020
that code line does not exist in the link you posted.
Walter Roberson
il 7 Mag 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)
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Test and Measurement in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!