Merida
2008-08-07 08:10:10 UTC
Hi I would like to build a 1D array dynamically with data coming out of a for loop:I have data coming out of a for loop which fills a 1D array with 10 rows - there are 100 of these coming out of the for loop as defined by the index on the loop. (ofcourse the results of the 100 iterations are all different)Now, i want to concatenate the results into a single 1D array, with the result going one under the next. I want to do this dynamically as the results come out of the for loop, so that finally I want to have a 1D array with 1000 rows showing the (10 x 100 results), i.e. 100 lots of the 1D array with 10 rows each from the for loop, one under the next.Can someone suggest how to do this? Cheers!