02-01-2005 11:07 PM
02-01-2005 11:28 PM
02-02-2005 12:40 AM
02-02-2005 01:10 AM
02-02-2005 01:25 AM
02-02-2005 01:52 AM
02-02-2005 02:57 AM
11-22-2013 11:37 PM - edited 11-22-2013 11:39 PM
I have a 2D boolean array: three columns 8 rows (3 bits logic combinations from 000 to 111, I want to put them all in 1D boolean array together in series:
i.e
000
100
010
110
001
101
011
111
to
000100010110001101011111
How can I do that?
11-22-2013 11:51 PM - edited 11-23-2013 12:16 AM
wire te 2D array to reshape array and wire a 24 (or the product of the dimensions of the 2D array) to the dimension size input. The output will be a 1D array as requested.
11-23-2013 12:58 AM
Thaank you, it works....