Table of Contents:

Matrix Multiplication

Where:

Examples

import numpy as np
x = [[1, 2, 3],[4,5,6]]
y = [[7,8],[9,10],[11,12]]
np.dot(x, y)

#array([[ 58,  64],
#      [139, 154]])