highPass#

pyCGM2.Signal.signal_processing.highPass(array: ndarray, lowerFreq: float, upperFreq: float, fa: float)#

Applies a Butterworth bandpass filter to the input signal.

Parameters:
  • array (np.ndarray) – The input array containing the signal data.

  • lowerFreq (float) – Lower frequency bound for the bandpass filter.

  • upperFreq (float) – Upper frequency bound for the bandpass filter.

  • fa (float) – Sampling frequency of the signal.

Returns:

np.ndarray – The bandpass-filtered signal.