undefined function or variable bits---UMFC vs ODFM
显示 更早的评论
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 个评论
Walter Roberson
2020-5-4
that code line does not exist in the link you posted.
Walter Roberson
2020-5-7
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)
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Test and Measurement 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!