bayespy.utils.linalg.dot

bayespy.utils.linalg.dot(*arrays)[source]

Compute matrix-matrix product.

You can give multiple arrays, the dot product is computed from left to right: A1*A2*A3*…*AN. The dot product is computed over the last two axes of each arrays. All other axes must be broadcastable.