Skip to content

Instantly share code, notes, and snippets.

@dogac00
Created March 14, 2018 01:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogac00/a9cd4bac7beac1a9eb4e9c6ea2c1991f to your computer and use it in GitHub Desktop.
Save dogac00/a9cd4bac7beac1a9eb4e9c6ea2c1991f to your computer and use it in GitHub Desktop.
Finding Determinant in Python
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