Decompose HD-sEMG into motor units (PhysioHDEMG bridge)
Source:R/emg-hdemg-bridge.R
hdEMGDecompose.RdConvenience bridge that forwards to
PhysioHDEMG::hdEMGDecompose() for high-density surface EMG
motor-unit decomposition by convolutive blind source separation. The
PhysioHDEMG package must be installed. See
PhysioHDEMG::hdEMGDecompose() for
the full argument list and return value.
Arguments
- x
HD-sEMG data: an
n_time x n_channelsmatrix, aPhysioExperiment, or anhdemg_simobject.- ...
Further arguments passed to
PhysioHDEMG::hdEMGDecompose().
See also
muscleSynergy() for whole-muscle synergy decomposition.
Examples
if (FALSE) { # \dontrun{
sim <- PhysioHDEMG::make_hdemg_sim(n_units = 2, duration_sec = 3)
dec <- hdEMGDecompose(sim, n_units = 4)
} # }