import numpy as np from scipy.linalg import expm,logm #矩阵指数计算 x = expm(np.ones((2,2))) #矩阵对数计算 y = logm(np.ones((2,2)))