11-23-2009 03:22 AM
There is another niggly problem which could use some solving. The when the case structure runs the second case, (which is shown in the diagram) the array produced is the second reading appended to the first reading from the first case in a 2d array.
Is there a way of just getting that second reading for the second case. As you can see i took the subarray out which is the array i want but this will not be able to work for a more complicated program.
Eg.
Current:
case0 - 1,2,3,4.
case1 -1,2,3,4.
5,6,7,8.
Need:
case0 - 1,2,3,4.
case1 - 5,6,7,8.
11-23-2009 03:29 AM