06-09-2008 04:51 AM
Solved! Go to Solution.
06-09-2008 05:50 AM - edited 06-09-2008 05:51 AM
Hi muks,
do you know the "reshape array" function? I think this should help you.
Mike
06-09-2008 05:51 AM
06-09-2008 05:56 AM
06-09-2008 05:59 AM - edited 06-09-2008 06:00 AM
06-09-2008 06:03 AM - edited 06-09-2008 06:04 AM
06-10-2008 02:26 AM
06-10-2008 04:26 AM
This is exactly what the code I attached is doing ( for a 1000x1 array instead of a 1500000x1). Essentially, you initialise your array outside of the loop in a shift register. You need the second shift register to store the current
index value. For example, if your first iteration produces 50 elements and the second 100, then at the third iteration you use the replace array function to insert the new data into the array starting at index 150. If the total number of
elements exceeds 1000, the loop terminal condition is met you you break out of the loop. Your data will be stored at the orange shift register and can be used for analysis.
KostasB
NIUK Applications Engineering
06-10-2008 07:02 AM - edited 06-10-2008 07:10 AM
06-10-2008 02:38 PM