hard.thresh(unbalhaar)
hard.thresh()所属R语言包:unbalhaar
Hard thresholding of a top-down Unbalanced Haar decomposition
硬阈值的一个自上而下不平衡的哈尔分解
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Presented with an object returned by best.unbal.haar, the function sets to zero those Unbalanced Haar coefficients which fall below a certain threshold sigma.
主办的best.unbal.haar返回一个对象,该函数设置为零不平衡的哈尔系数低于一定的阈值sigma。
用法----------Usage----------
hard.thresh(buh, sigma = 1)
参数----------Arguments----------
参数:buh
an object returned by best.unbal.haar containing the decomposition to be thresholded
返回的对象best.unbal.haar,含有分解到阈值
参数:sigma
the threshold (a positive scalar)
的阈值(正的标量)
值----------Value----------
a thresholded object, of the same class as buh
一个阈值的对象,同一类的buh
(作者)----------Author(s)----------
Piotr Fryzlewicz
参见----------See Also----------
best.unbal.haar, hard.thresh.bu
best.unbal.haar,hard.thresh.bu
实例----------Examples----------
x <- rnorm(1000)
x.uh <- best.unbal.haar(x)
x.uh.th <- hard.thresh(x.uh)
x.uh.th.r <- reconstr(x.uh.th)
ts.plot(x.uh.th.r)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|