gpt4 book ai didi

python - 在 python 中绘制随机游走

转载 作者:太空宇宙 更新时间:2023-11-04 03:52:56 25 4
gpt4 key购买 nike

<分区>

我使用以下代码生成随机游走的 y 坐标。

from random import *
n = 10
length = 100*n

def ncount(vector):
return sum(vector)
randBinList = lambda n: [randint(0,1) for b in xrange(1,n+1)]

vector = randBinList(length)

ycoords = [ncount(vector[i:i+n-1]) for i in xrange(length-n+1)]
xcoords = range(length-n+1)

我如何在 2d 中绘制这个随机游走?

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