I have this problem. I have four points that corresponds to four vertices of rectangle. Every vertex has a load cell that return a weight. How can I calculate the center of gravity, in a range of 0-100?
Any idea? Thanks
--- EDIT ----
Look the image:

I have this problem. I have four points that corresponds to four vertices of rectangle. Every vertex has a load cell that return a weight. How can I calculate the center of gravity, in a range of 0-100?
Any idea? Thanks
--- EDIT ----
Look the image:

Let the origin be one corner of the rectangle and the $x$ axis along the length $L$. If the width is $W$ you have measurements at $(0,0),(L,0),(0,W),(L,W)$. If $w(x,y)$ is the weight measured at $x,y$ you have the $x$ position of the CG is $$x_{CG}=\frac {w(L,0)+w(L,W)}{w(L,0)+w(L,W)+w(0,W+w(0,0)}L$$ If you want a value in $[0,100]$ you probably mean the percentage of the length, so divide this by the length and express it in percent. Do the same in the other axis.