Hi,
I have a 3d array where each page has 2d arrays as follows
1 1
2 1
5 1
4 1
0 1
2 1
3 1
7 1
9 1
...
I want to combine these arrays together into one large array so that it looks like
0 1
1 1
2 2
3 1
4 1
5 1
6 0
7 1
8 0
9 1
and so forth.
The basic problem is to turn this 3d array into a 2d array. I want to
keep the row elements of the 2d array intact except for adding a 0
where there is no 1 found, but I want to add up all the 1's where they
are repeated on each page.
I had thought about some ideas of how to do this, but would like to get
some suggestions from others. Please post responses in labview 7.1 if
that is possible. I can also open in labview 8 but I have to go to a
different computer which is more cumbersome.
Thank you