借助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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。