借助Numpy.broadcast_arrays()
方法,我们可以通过使用两个或多个数组来获得一个广播数组Numpy.broadcast_arrays()
方法。
用法: Numpy.broadcast_arrays()
返回:使用numpy返回广播的数组。
范例1:
在这个例子中,我们可以通过使用Numpy.broadcast_arrays()
方法,我们可以使用两个或多个numpy数组获取广播的数组。
# import numpy
import numpy as np
# using Numpy.broadcast_arrays() method
gfg1 = np.array([[1, 2]])
gfg2 = np.array([[3], [4]])
print(np.broadcast_arrays(gfg1, gfg2))
输出:
[array([[1, 2],
[1, 2]]), array([[3, 3],
[4, 4]])]
范例2:
# import numpy
import numpy as np
# using Numpy.broadcast_arrays() method
gfg1 = np.array([[1, 2], [6, 7]])
gfg2 = np.array([[3, 5], [4, 8]])
print(np.broadcast_arrays(gfg1, gfg2))
输出:
[array([[1, 2],
[6, 7]]), array([[3, 5],
[4, 8]])]
相关用法
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python os.system()用法及代码示例
- Python os.uname()用法及代码示例
- Python sympy RGS用法及代码示例
- Python numpy.ma.ids()用法及代码示例
- Python os.mkfifo()用法及代码示例
- Python os.getpid()用法及代码示例
- Python os.getlogin()用法及代码示例
- Python os.listdir()用法及代码示例
- Python PIL blend()用法及代码示例
- Python sys.setrecursionlimit()用法及代码示例
- Python sys.getrecursionlimit()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy.broadcast_arrays() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。