uncompress.default(wavethresh)
uncompress.default()所属R语言包:wavethresh
Undo zero run-length encoding for a vector.
撤消零游程长度编码的向量。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function inverts the action carried out by the compress.default function.
这的的功能反转的行动进行了compress.default功能。
用法----------Usage----------
## Default S3 method:[默认方法]
uncompress(v, verbose=FALSE, ...)
参数----------Arguments----------
参数:v
The object to uncompress
要解压缩的对象
参数:verbose
Print an informative message whilst executing
打印一个内容丰富的信息,同时执行
参数:...
Other arguments
其他参数
Details
详细信息----------Details----------
The inverse of compress.default
逆compress.default
值----------Value----------
The uncompressed, reinstated, vector.
解压缩后的恢复,矢量。
(作者)----------Author(s)----------
G P Nason
参见----------See Also----------
compress.default, uncompress
compress.default,uncompress
实例----------Examples----------
uncompress(compress(c(1, rep(0,99), 1)))
#[1] 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0[[1] 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#[38] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0[[38] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#[75] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1[[75] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|