randi 0 to 3 (2bits)

19 views (last 30 days)
Nouha Derradji
Nouha Derradji on 12 Apr 2020
Commented: Nouha Derradji on 12 Apr 2020
How can I define a random sequence of 16384 whole numbers between 0 and 3 and each integer represents two bits?

Accepted Answer

dpb
dpb on 12 Apr 2020
v=randi([0 3],16384,1,'int8'); % save as int8; ML doesn' have arbitrary length integers.
You can visualize what have with
histogram(v)
dec2bin(v(1:10),2)

More Answers (1)

Matt J
Matt J on 12 Apr 2020
randi([0,3],16384,1)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!