使用scipy过滤信号
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用scipy过滤信号相关的知识,希望对你有一定的参考价值。
This portion of code allows to do bandpass filtering over time series
import scipy.signal as sp nyf= sampfr/2 #Sampling Frequency/2 (Nyquist Frequency) low=0.5/nyf #Lower cut of the filter high=50/fso2 #High Cut of the filter b,a = sp.butter(5,[low,high], btype='band') #Butter generates the coefficients for the filter dataF=sp.lfilter(b, a, data) #Does the convoultion, and the output is the filtered signal
以上是关于使用scipy过滤信号的主要内容,如果未能解决你的问题,请参考以下文章
为啥使用 k-means(来自 Scipy)聚类到两个片段的图像会显示两个以上不同的像素值?
使用 scipy.fft 进行Fourier Transform:Python 信号处理