Thursday, July 17, 2025
HomeLanguagesPython | Numpy.broadcast_arrays() method

Python | Numpy.broadcast_arrays() method

With the help of Numpy.broadcast_arrays() method, we can get the one broadcasted array with the help of two or more arrays by using Numpy.broadcast_arrays() method.

Syntax : Numpy.broadcast_arrays()

Return : Return the broadcasted array using numpy.

Example #1 :
In this example we can see that by using Numpy.broadcast_arrays() method, we are able to get the broadcasted array using two or more numpy arrays.




# 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))


Output :

[array([[1, 2],
[1, 2]]), array([[3, 3],
[4, 4]])]

Example #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))


Output :

[array([[1, 2],
[6, 7]]), array([[3, 5],
[4, 8]])]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32143 POSTS0 COMMENTS
Milvus
67 POSTS0 COMMENTS
Nango Kala
6526 POSTS0 COMMENTS
Nicole Veronica
11674 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11729 POSTS0 COMMENTS
Shaida Kate Naidoo
6617 POSTS0 COMMENTS
Ted Musemwa
6894 POSTS0 COMMENTS
Thapelo Manthata
6585 POSTS0 COMMENTS
Umr Jansen
6575 POSTS0 COMMENTS