butfilt(RSEIS)
butfilt()所属R语言包:RSEIS
Butterworth filter
巴特沃斯滤波器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
design and apply butterworth low/high/band pass filters.
的巴特沃斯低/高/带通滤波器设计和应用。
用法----------Usage----------
butfilt(a, fl=0, fh=0.5, deltat=1, type="BP", proto="BU", npoles=5, chebstop=30.0, trbndw=0.3)
参数----------Arguments----------
参数:a
vector signal
矢量信号
参数:fl
low frequency cut-off, default=0
低频截止默认值= 0
参数:fh
high frequency cut-off, DEFAULT= (1/2dt)
高频截止,默认值=(1/2dt)
参数:deltat
sample rate, s, deFAULT=1
采样率,S,默认值= 1
参数:type
type of filter, one of c("LP", "HP","BP" ,"BR" ), DEFAULT="BP"
类型的过滤器,其中的C(“LP”,“HP”,“BP”,“BR”),默认值=“BP”
参数:proto
prototype, c("BU", "BE" , "C1" ,"C2"), DEFAULT="BU"
原型,C(“BU”,“BE”,“C1”,“C2”),DEFAULT =“BU”
参数:npoles
number of poles or order, DEFAULT=5
极数或命令,默认值= 5
参数:chebstop
Chebyshev stop band attenuation, DEFAULT=30.0
切比雪夫阻带衰减,默认值= 30.0
参数:trbndw
Chebyshev transition bandwidth, DEFAULT=0.3
切比雪夫过渡带宽,默认值= 0.3
Details
详细信息----------Details----------
creation of butfilt is a described by the following arguments:
创造butfilt描述的以下参数:
LP low pass
LP低通
HP high pass
HP高通
BP band pass
BP带通
BR band reject
BR带阻
BU Butterworth
BU巴特沃思
BE Bessel
BE贝塞尔
C1 Chebyshev type 1
C1切比雪夫1型
C2 Chebyshev type 2
C2切比雪夫2型
Arguments chebstop , trbndw are ignored for non-chebyshev filters. LP and HP filters are seet by specifying fl for HP filters and fh for LP filters, the other argumentin each case is ignored.
参数chebstop,trbndw忽略不切比雪夫滤波器。 HP过滤器和FH LP过滤器指定佛罗里达州LP和HP过滤器是SEET的的,其他的argumentin每一种情况下被忽略。
值----------Value----------
filtered time series
过滤的时间序列
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees.edu>
实例----------Examples----------
data(CE1)
ts1 = CE1$y
zz = butfilt(ts1, 1, 15, CE1$dt, "LP" , "BU")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|