how do you calculate the moment for table data?

tunage

New member
Joined
Jul 15, 2014
Messages
8
I am trying to calculate the moment in a data list/column/array

position data
1 15
2 22
3 5
4 2
5 1
to find out where in the list is the most volume.

i.e. the estimated moments in the table above would be ~1.65
 
how do I calculate the moment in a data list?

I am trying to calculate the moment in a data list/column/array

position data
1...........15
2...........22
3...........5
4...........2
5...........1
to find out where in the list is the most volume.

i.e. the estimated moments in the table above would be ~1.65
 
I am trying to calculate the moment in a data list/column/array

position data
1...........15
2...........22
3...........5
4...........2
5...........1
to find out where in the list is the most volume.

i.e. the estimated moments in the table above would be ~1.65


I had the formal years ago, but since misplaced it.
it was something like/similar to
((5*10+15)+(4*10+22)+(3*10+5)+(2*10+2)+(1*10+1))/5
though this ^^ is very incorrect.
Though it would follow a similar style logic.
 
Top