Created
March 14, 2018 01:40
-
-
Save dogac00/a9cd4bac7beac1a9eb4e9c6ea2c1991f to your computer and use it in GitHub Desktop.
Finding Determinant in Python
This file contains 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 | |
def determinant(matrix): | |
return round(np.linalg.det(matrix),3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment