I want to add binary numbers randomly in a cell array. How to do it?
2 次查看(过去 30 天)
显示 更早的评论
Cell array
1 个评论
Marcel Kreuzberg
2021-7-29
write a random binary number (max 1024) randomly in a 10x10 cell array:
C{randi(10),randi(10)} = dec2bin(randi(1024))
回答(1 个)
Johannes Hougaard
2021-7-29
I can't really get the desired output from Marcels comment. Maybe if you add it to a for loop it'll be feasible.
However I think this will do the trick
maxnum = 1024;
rowno = 10;
colno = 9;
C = cellfun(@dec2bin,num2cell(randi(maxnum,rowno,colno)),'UniformOutput',false);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!