gpt4 book ai didi

python - 将 numpy 二维数组划分为更精细的分辨率

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

我有一个 2d numpy 数组 (2 x 2) 元素,我想从中创建另一个 2D numpy 数组,这样:

二维数组:

import numpy as np
np.random.rand(2,2)
  array([[10.0,8.0],
[6.0,4.0]])

我想从中得到一个 4x4 数组,以便与较粗糙数组的特定单元格对应的较精分割辨率数组的所有值与较粗糙数组相同:

  array([[10.0,10.0,8.0,8.0],
[10.0,10.0,8.0,8.0]
[6.0,6.0,4.0,4.0]
[6.0,6.0,4.0,4.0]])

我可以使用 for 循环来做到这一点,但我真的很想知道是否存在更 pythonic 的方法。

最佳答案

您可以使用 repeat :

>>> a = np.random.rand(2,2)
>>> a
array([[ 0.66172561, 0.09262421],
[ 0.40578266, 0.84510431]])
>>> a.repeat(2, 0).repeat(2, 1)
array([[ 0.66172561, 0.66172561, 0.09262421, 0.09262421],
[ 0.66172561, 0.66172561, 0.09262421, 0.09262421],
[ 0.40578266, 0.40578266, 0.84510431, 0.84510431],
[ 0.40578266, 0.40578266, 0.84510431, 0.84510431]])

关于python - 将 numpy 二维数组划分为更精细的分辨率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32447588/

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