how to find determinant in numpy

Solutions on MaxInterview for how to find determinant in numpy by the best coders in the world

showing results for - "how to find determinant in numpy"
Romina
21 May 2019
1import numpy as np
2a = np.array([[1,2], [3,4]]) 
3print np.linalg.det(a)