IsPowerOfTwo(wavethresh)
IsPowerOfTwo()所属R语言包:wavethresh
Decides whether vector elements are integral powers of two (returns NA if not).
决定是否向量元素的整数幂(返回NA如果不是)。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function checks to see whether its input is a power of two. If it is then it returns that power otherwise it returns NA.
此功能检查,以查看是否它的输入是二的幂的。如果是,那么它返回的电源,否则将返回NA。
用法----------Usage----------
IsPowerOfTwo(n)
参数----------Arguments----------
参数:n
Vector of numbers that are to be checked whether it is a power of two.
是要检查它是否是二的幂的数字媒介。
Details
详细信息----------Details----------
Function takes the log of the input, divides this by log(2) and if the result is integral then it knows the input is true power of two.
函数需要的输入log,分这由log(2),如果结果是不可分割的,那么它知道的输入是两个真实的力量。
值----------Value----------
If n is a power of two, then the power is returned otherwise NA is returned.
如果n是两个电源,电源否则返回NA返回。
RELEASE----------RELEASE----------
Version 3.6.0 Copyright Guy Nason 1995
版本3.6.0版权盖利晨1995年
(作者)----------Author(s)----------
G P Nason
参见----------See Also----------
nlevels.default.
nlevels.default。
实例----------Examples----------
#[]
# Try and see whether 1,2,3 or 4 are powers of two! [尝试,看看是否有1,2,3或4是2的幂!]
#[]
IsPowerOfTwo(1:4)
# [1] 0 1 NA 2[[1] 0 1 NA 2]
#[]
# Yes, 1,2 and 4 are the 0, 1 and 2nd power of 2. However, 3 is not an[是的,1,2和4是0,1和2的第二电源。然而,图3是不是一个]
# integral power of two.[2的整数次幂。]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|