gpt4 book ai didi

r - 几何级数中的数字

转载 作者:行者123 更新时间:2023-12-03 23:34:14 26 4
gpt4 key购买 nike

如何生成 R 中几何级数的数字序列?例如我需要生成序列:
1, 2,4,8,16,32 等等......直到说一个有限值?

最佳答案

这是我要做的:

geomSeries <- function(base, max) {
base^(0:floor(log(max, base)))
}

geomSeries(base=2, max=2000)
# [1] 1 2 4 8 16 32 64 128 256 512 1024

geomSeries(3, 100)
# [1] 1 3 9 27 81

关于r - 几何级数中的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11094822/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com