undefined function or variable bits---UMFC vs ODFM
Show older comments
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 Comments
Walter Roberson
on 4 May 2020
that code line does not exist in the link you posted.
Walter Roberson
on 7 May 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)
Accepted Answer
More Answers (0)
Categories
Find more on Test and Measurement in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!