matrix dot product using numpy July 29, 2021 install - python numpy import numpy as np x = [[1, 5 ,6],[7, 8 ,9],[5, 4, 3]] y = [[1,2],[2,3],[1,5]] np.dot(x, y) result - array([[17, 47], [32, 83], [16, 37]]) Read more