gpt4 book ai didi

python - 如何在 Python 中编写像 Mma 的 NestList 这样的函数

转载 作者:行者123 更新时间:2023-11-28 20:26:12 27 4
gpt4 key购买 nike

例如:NestList(f,x,3) ----> [x, f(x), f(f(x)), f(f(f(x)))]

http://reference.wolfram.com/mathematica/ref/NestList.html

最佳答案

你可以把它写成一个生成器:

def nestList(f,x,c):
for i in range(c):
yield x
x = f(x)
yield x

import math
print list(nestList(math.cos, 1.0, 10))

或者,如果您希望将结果作为列表,您可以在循环中追加:

def nestList(f,x,c):
result = [x]
for i in range(c):
x = f(x)
result.append(x)
return result

import math
print nestList(math.cos, 1.0, 10)

关于python - 如何在 Python 中编写像 Mma 的 NestList 这样的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12435298/

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