I got a formal problem by using python and some for loops for each segment of my lists to be averaged.
- I have an
arrayofx=(epochs, 257) - Now I want to calculate for every
epochthe mean value of the 257 values in there - The output should be an
arrayofx _ mean = (120, 1)
I used a for loop, but the results are more than questionable. Any help is appreciated.
sum(arr)/len(arr)?