I want to create a matrix in matlab with 500 cell (50 row,10 column ), How I can create and initialize it by random binary digits?
I want some thing like this in 50*10 scale
as sample 3*4
0 1 1 1
0 0 0 0
1 1 1 1
and after it, how can get decimal equation of any row ? like row 1 is equal 7 in decimal
Why not use
randito generate random integers?and to convert a binary row to a number – as in the previous answers: