12-04-2013 01:48 PM
Example:
I have ARRAY1 with the following:
1
1
1
2
2
3
ARRAY2 Contains:
1
2
3
4
5
6
In the end ARRAY3 would contain:
2 (1+2+3)/3
4.5 (4+5)/2
6 (6)/1
Solved! Go to Solution.
12-04-2013 01:58 PM
Here is my first go at it. There are plenty of improvements that can be made (conditional index is one) but it appears to do what you want. Array 1 and 2 must be the same size for it to work.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
12-04-2013 03:20 PM
Thanks... This will get me started.