VOOZH about

URL: https://www.geeksforgeeks.org/python/python-numpy-broadcast_arrays-method/

⇱ Python | Numpy.broadcast_arrays() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Numpy.broadcast_arrays() method

Last Updated : 17 Sep, 2019
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. Output :
[array([[1, 2], [1, 2]]), array([[3, 3], [4, 4]])]
Example #2 :
Output :
[array([[1, 2], [6, 7]]), array([[3, 5], [4, 8]])]
Comment
Article Tags: