08-14-2014 08:42 AM - edited 08-14-2014 08:43 AM
If the processing speed is not a concern you can do it with one loop by using shift reg and an insert array function. If you want to create the 1D array after your loops are done then you can do it as it is shown in the second loop. (but in this case Yamaeda's solution is more elegant)
08-14-2014 09:33 AM
Ok, I finally got it working.
But... the idea to collect data this way was crap. Now I got 10 times the same values because no new data arrives *face palm*
Anyway I attached the solution.
Thank you all for helping me!
08-14-2014 09:37 AM
Hallo Steffen,
even more "facepalm":
Whatever you do in those smaller FOR loops can be done in your bigger FOR loop before! (Rube-Goldberg-Alarm!)
And please use BuildArray to append new data to an existing array. InsertIntoArray is overkill here…
08-14-2014 09:48 AM
Like I said before, if you have LabVIEW 2012 or later, you can configure those Autoindexing tunnels to be "Concatinating". A lot better than using more loops afterwards.