Matrix and vector products
dot(a, b[, out]) Dot product of two arrays.
vdot(a, b) Return the dot product of two vectors.
inner(a, b) Inner product of two arrays.
outer(a, b[, out]) Compute the outer product of two vectors.
matmul(a, b[, out]) Matrix product of two arrays.
tensordot(a, b[, axes]) Compute tensor dot product along specified axes for arrays >= 1-D.
einsum(subscripts, *operands[, out, dtype, ...]) Evaluates the Einstein summation convention on the operands.
linalg.matri