compare.filters(wavethresh)
compare.filters()所属R语言包:wavethresh
Compares two filters.
比较两个过滤器。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compares two filters (such as those returned from filter.select). This function returns TRUE is they are the same otherwise returns FALSE.
比较两个过滤器(,如filter.select)返回的。这个函数返回TRUE,则它们是相同的,否则返回FALSE。
用法----------Usage----------
参数----------Arguments----------
参数:f1
Filter, such as that returned by filter.select
过滤器,如返回的filter.select
参数:f2
Filter, such as that returned by filter.select
过滤器,如返回的filter.select
Details
详细信息----------Details----------
A very simple function. It only needs to check that the family and filter.number components of the filter are the same.
一个非常简单的功能。只需要检查family和filter.number的过滤器组件是相同的。
值----------Value----------
If f1 and f2 are the same the function returns TRUE, otherwise it returns FALSE.
如果f1和f2是相同的,函数返回TRUE,否则返回FALSE。
RELEASE----------RELEASE----------
Version 3.9 Copyright Guy Nason 1998
版本3.9版权所有1998年盖利晨
(作者)----------Author(s)----------
G P Nason
参见----------See Also----------
filter.select.
filter.select。
实例----------Examples----------
#[]
# Create three filters![创建三个筛选器!]
#[]
filt1 <- filter.select(4, family="DaubExPhase")
filt2 <- filter.select(3, family="DaubExPhase")
filt3 <- filter.select(4, family="DaubLeAsymm")
#[]
# Now let us see if they are the same...[现在,让我们看看他们是相同的...]
#[]
compare.filters(filt1, filt2)
# [1] FALSE[[1] FALSE]
compare.filters(filt1, filt3)
# [1] FALSE[[1] FALSE]
compare.filters(filt2, filt3)
# [1] FALSE[[1] FALSE]
#[]
# Nope, (what a surprise) they weren't. How about[不,(什么是惊喜)。怎么样]
#[]
compare.filters(filt1, filt1)
# [1] TRUE[[1] TRUE]
#[]
# Yes, they were the same![是的,他们是一样的!]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|