I need to remove the DC part of a signal. To do this I have this code:
def removeDC(seq): mean_seq = np.mean(seq) seq_mod = np.array([]) for sample in