MATLAB: Sbit stream

bit-stream

w= 1 0 1
w= 0 1 1
w= 0 1 0
how came this can be written in straight line
w= 1 0 1 0 1 1 0 1 0

Best Answer

You might find this easier to understand:
w = []; for i = 1:30 w = [w, A(i), B(i), C(i)]; end
Related Question