Last active
August 14, 2017 21:08
-
-
Save ajp619/d67881262f0a2cf6aeafa4484ab2cd78 to your computer and use it in GitHub Desktop.
Best way to multiply matrices in python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = np.array([[1, 2, 3]]) | |
np.mat(a) * np.mat(a).T # this can continue ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment