09-10-2008 02:05 PM
Hello,
How can I collect data after n iterations (2D x-y data), then find the average of each data point of just the y-data and save the final data as the original x data and averaged y data.
Thanks,
hiNi
09-10-2008 10:45 PM
09-11-2008 10:08 AM
Hello,
Attached is an example of the way the data is collected. I would like to get the average of the Iterations for each row, then the result stored in the last column.
Thanks,
hiNi
09-11-2008 02:12 PM - edited 09-11-2008 02:13 PM
Take your 2D array and transpose it, then feed it through a for loop to get the average of the resulting 1-D array.