In: Computer Science
Using Python, create a function whose inputs are two matrices and whose output is the element wise product of the two matrices.
summary:
1) Matrix is defined by consisting of rows and columns.
2) By using two for loops we can form a matrix.
3) numpy is python library used for working with arrays.
4) numpy stands for numerical python.
5) numpy.multiply returns the elementwise product of two matrices.