gpt4 book ai didi

python - numpy.zeros 方法中的这个参数是什么意思?

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

我有这段代码,但我发现很难理解按如下所示定义 numpy.zeros 方法的优势。

Z = np.zeros((10,10), [('x',float),('y',float)])
Z['x'], Z['y'] = np.meshgrid(np.linspace(0,1,10),
np.linspace(0,1,10))

print(Z)

xy 有什么意义?

最佳答案

这实际上定义了两个单独的 ndarray,一个名为 'x',另一个名为 'y'。虽然在这种情况下,没有必要指定 dtype,但它是一种创建这种类型的双 ndarray 的方法。

虽然此用法未明确包含在 numpy.zeros documentation 中,他们确实展示了一个使用它的例子。


编辑:

@WarrenWeckesser 链接了一些 documentation for these structured arrays

关于python - numpy.zeros 方法中的这个参数是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33335649/

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