python matrix determinant without numpy code example
Example 1: python matrix determinant without numpy
7
4
55
5
5
5
5
5
55
5
Example 2: python matrix determinant without numpy
def det(matrix):
order=len(matrix)
posdet=0
for i in range(order):
posdet+=reduce((lambda x, y: x * y), [matrix[(i+j)%order][j] for j in range(order)])
negdet=0
for i in range(order):
negdet+=reduce((lambda x, y: x * y), [matrix[(order-i-j)%order][j] for j in range(order)])
return posdet-negdet