nextn(stats)
nextn()所属R语言包:stats
Highly Composite Numbers
高度复合数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
nextn returns the smallest integer, greater than or equal to n, which can be obtained as a product of powers of the values contained in factors. nextn is intended to be used to find a suitable length to zero-pad the argument of fft to so that the transform is computed quickly. The default value for factors ensures this.
nextn返回的最小整数,大于或等于n,它可以作为一个产品在factors包含的值的权力。 nextn的目的是要找到一个合适的长度为零垫fft参数变换快速计算。默认值factors确保这一点。
用法----------Usage----------
nextn(n, factors = c(2,3,5))
参数----------Arguments----------
参数:n
an integer.
一个整数。
参数:factors
a vector of positive integer factors.
一个正整数因素的向量。
参见----------See Also----------
convolve, fft.
convolve,fft。
举例----------Examples----------
nextn(1001) # 1024[1024]
table(sapply(599:630, nextn))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|