Question: Write a function called Matrices that takes A matrix and B matrix, and then returns a dictionary that has four keys called addition (addition of
Write a function called Matrices that takes A matrix and B matrix, and then returns a dictionary that has four keys called addition (addition of A and B), subtraction (subtract B from A), multiplication (multiply A and B), elementwise (elementwise product, (a*b)). Inputs will be represented as numpy arrays and outputs should also be numpy arrays.
def Matrices(A,B): #YOUR CODE HERE raise NotImplementedError()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
