You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
already add digital filters in hantekosc samples: https://jiangge12.github.io/Pic_DSO.png
it is quite easy by using scipy , only few lines:
from scipy import signal
b, a = signal.butter( 5, 0.075, 'lowpass' )
y_data = signal.filtfilt(b, a, y_data_in)
not familiar with openhantek6022, wish as simple as python
Beta Was this translation helpful? Give feedback.
All reactions