gpt4 book ai didi

python - python中的数组形状

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

这将是一个相当愚蠢的问题,尽管它很烦人。我有一个 800 个 ndarrays 的列表,每个 ndarrays 有 7680 个元素。我如何将其转换为 <800,7680> 格式?

enter image description here

最佳答案

只需将其传递给 np.array 工厂函数即可。例如:

>>> lst = [np.zeros(7680) for x in range(800)]  #just a list of 800 ndarrays ...
>>> arr = np.array(lst) #make them into an array
>>> arr.shape #shape looks OK to me :-)
(800, 7680)

关于python - python中的数组形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17177426/

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