Hi, I am compiling a program by using Labview. I get one 2D Array after 2 loops : one is inside and the other is outside loop. Right now, what I want to do is to find the mean values of the every cell in the array after measurement eg. [1, 2, 3] - first try; [1.1, 2.01, 2.99] -second try; [0.9, 2.1, 3.1] - and so on and the averaged signal that I want to get is [mean(1, 1.1, 0.9) ; mean(2, 2.01, 2.1) ; mean(3, 2.99, 3.1)].I can't suceed in getting the right result. Please helpe me.