Open In App

Python | Numpy np.kron() method

Last Updated : 13 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of np.kron() method, we can get the Kronecker product of two lists by using np.kron() method.

Syntax : np.kron(list1, list2)

Return : Return the kronecker product of two list.

Example #1 :
In this example we can see that by using np.kron() method, we are able to get the kronecker product of two arrays passed as argument.




# import numpy
import numpy as np
  
# using np.kron() method
gfg = np.kron([1, 2, 3], [5, 10, 15])
  
print(gfg)


Output :

[ 5 10 15 10 20 30 15 30 45]

Example #2 :




# import numpy
import numpy as np
  
# using np.kron() method
gfg = np.kron([[1, 2, 3], [9, 8, 7]], [5, 10, 15])
  
print(gfg)


Output :

[[ 5 10 15 10 20 30 15 30 45]
[ 45 90 135 40 80 120 35 70 105]]


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads