10-08-2007 10:35 PM
10-09-2007 02:33 AM
maybe start by browsing the array pallette with the context help on (help - show constext help).
that will give you a first idea how to play with arrays. then browse examples (help - find examples), and search for "array" - there you will find beginning examples and ideas how to imlpement waht you need.
10-09-2007 02:50 AM
10-09-2007 06:36 PM
10-10-2007 03:49 AM
Well, we have missing VIs and very strange constructs. For example you are trying to take the mean of an array of filenames instead of the containing data. You also spin the while loop, but only retain the last filename. Maybe you want to autoindex at the loop boundary. I would recommend to do a few general LabVIEW tutorials.
Here's a quick draft how things could be done.
I have no idea how your data is organized inside the file, so you certainly need to modify the attached draft so your data is read correctly. Still, maybe it can give you some ideas.
10-10-2007 04:30 PM
10-11-2007 02:33 AM
The basics would remain the same, however you would need to read the full 2D array, then slice out the second row (using index array with one index disconnected) ) before processing as shown.
@econwendy wrote:
Am I right in thinking that if I would like to calcualte the means of the second row, I would do the same thing as the code above?
10-12-2007 03:48 PM
10-13-2007 05:50 PM
10-15-2007 04:44 PM