gpt4 book ai didi

python - R 和 Python 中巴特沃斯滤波器的不同结果

转载 作者:太空宇宙 更新时间:2023-11-04 02:21:35 24 4
gpt4 key购买 nike

我尝试在 R 和 Python 中对相同的数据运行相同的过滤器,但我得到了不同的结果,下面是代码。谁能告诉我为什么会发生这种情况,您是如何解决的?

Python代码:

from scipy import signal 
>>> fc = 0.05 # Cutoff frequency normal
>>> N = 1 # Filter order
>>> b, a = signal.butter(N, fc)
>>> print b, a
[ 0.07295966 0.07295966] [ 1. -0.85408069]
>>> data_in = [1, 2, 4, 5, 7, 8, 100, 101, 5]
>>> signal.filtfilt(b, a, data_in)
array([-17.64249874, -13.92903176, -10.61891211, -7.66701305,
-5.03713838, -2.70112003, -1.19904652, -1.65272747, -4.06100815])

R代码:

> library(signal)
> data_in<-c(1,2,4,5,7,8,100,101,5)
> N<-1 #order
> fc<-0.05 #cutoff frequency
> (b2<-butter(N,fc)) #the filter
$b
[1] 0.07295966 0.07295966

$a
[1] 1.0000000 -0.8540807

attr(,"class")
[1] "Arma"
> filtfilt(b2$b,b2$a,data_in)
[1] 6.142885 7.162141 8.303857 9.559103 10.921776 12.388452 13.397369 12.814425 10.637551

谁能理解为什么这里有区别?

最佳答案

在 python 而不是原始函数上使用此函数后,我收到了几乎相同的值。

signal.filtfilt(b,a,data_in,padtype = 'odd', padlen=3*(max(len(b),len(a))-1))

关于python - R 和 Python 中巴特沃斯滤波器的不同结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51478221/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com