Last active
December 3, 2018 22:36
-
-
Save upbeta01/69c669dcedda48b38faf777d0ff25a69 to your computer and use it in GitHub Desktop.
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
import numpy as np | |
a = np.matrix( | |
[[-1,0,4], | |
[2,0,0]] | |
) | |
b = np.matrix( | |
[[-1,1], | |
[-1,3], | |
[2,4]] | |
) | |
c = a * b | |
print(c) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment