def createD(a,x,n): # 構建函式,生成一個n階的行列式,其中對角線值為x,其餘為a di = np.eye(n) di = di * x di[di==0] = a return di d ...
確定! 回上一頁