gpt4 book ai didi

python - itertools.product 的更快替代品

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

有没有比 itertools.product 更快的方法来获取 x、y、z 的所有坐标组合?例如,我的范围是:x:10-310,y:10-310 和 z:0-65。

编辑

例如,我必须将所有坐标放在一个多数据中,如下所示:

points1 = vtk.vtkPoints()                      
for coords in itertools.product(x1,y1,z1):
points1.InsertNextPoint(coords)
boxPolyData1 = vtk.vtkPolyData()
boxPolyData1.SetPoints(points1)

最佳答案

使用np.mgrid :

import numpy as np

x, y, z = np.mgrid[10:311, 10:311, 0:66]

我假设您想要端点 31065(含)。

关于python - itertools.product 的更快替代品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43574827/

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