gpt4 book ai didi

python - 使用 Numpy 的参数化数组

转载 作者:行者123 更新时间:2023-11-30 08:51:02 25 4
gpt4 key购买 nike

如何将 numpy 数组定义为X = numpy.array([x, x*x, x*x*x,...]这样当 x=2 时输出为 [2,4,8,..],其中x是Python中的局部变量。

最佳答案

三角形! :D

>>> 2**np.arange(30)

array([ 1, 2, 4, 8, 16, 32,
64, 128, 256, 512, 1024, 2048,
4096, 8192, 16384, 32768, 65536, 131072,
262144, 524288, 1048576, 2097152, 4194304, 8388608,
16777216, 33554432, 67108864, 134217728, 268435456, 536870912])

关于python - 使用 Numpy 的参数化数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59999055/

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