Hi,
I have an iterator setup to calculate an average of surrounding figures, and it appears to be giving me different results than if I run the same iterator with the same numbers in excell.
It's for( i=12; i< (array.size()-12); i+=1)
Array[i] = (Array[i] + Array[i+1] + Array[i-1] etc to Array[i-12])/25;
This should give me average value, for 25 readings, but it is off!
564 in excell..... 650 ish in studio code. .. ( so 100 different ? )
Why might that be?