import numpy as npdef determinant(A):'''遞歸求解矩陣行列式''' n, m = A.shape if n == m == 1: return A[0, 0] else: sum = 0 for nn in ...
確定! 回上一頁