gpt4 book ai didi

python - reshape numpy ndarray

转载 作者:太空宇宙 更新时间:2023-11-04 00:48:28 26 4
gpt4 key购买 nike

我有以下形式的 3D 坐标的 numpy ndarray..

array([[  0.,   0.,  60.],
[ 0., 40., 60.],
[ 0., 40., 0.],
...,
[ 6., 0., 2.],
[ 4., 0., 2.],
[ 2., 0., 2.]])

我正在尝试 reshape 它,以便我得到一个二维坐标网格而不是一维坐标向量。

原始数组的长度为 1302,这应该允许我 reshape 为 21x62 排列。

我尝试了 coords_reshaped = np.ndarray.reshape(coords, (21,62)) 但这吐出了错误,

ValueError: total size of new array must be unchanged

那么我在这里缺少什么?

最佳答案

coords_reshaped = coords.reshape((21, 62, 3))

关于python - reshape numpy ndarray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38248677/

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