Calculate center of pressure (COP) from force-plate data
Source:R/kinetics-forceplate.R
calculateCOP.RdComputes COP coordinates from force and moment components using standard force-plate equations (assuming a vertical Z axis).
Usage
calculateCOP(forces, moments, origin = c(0, 0, 0), min_vertical_force = 20)Arguments
- forces
Matrix/data.frame with at least three columns for force components (X, Y, Z).
- moments
Matrix/data.frame with at least three columns for moment components (X, Y, Z).
- origin
Numeric length-3 vector with force-plate origin
(x, y, z).- min_vertical_force
Minimum absolute vertical force required to compute COP (samples below this threshold are set to
NA).
References
Winter DA (2009). "Biomechanics and Motor Control of Human Movement." 4th ed. John Wiley & Sons.
See also
analyzeForcePlate() for comprehensive force plate analysis,
calculateCOM() for whole-body center of mass computation.