如何找到大小为(5030 * 3)的矩阵的特征值和特征向量?

How to find the eigen value and eigen vector of matrix with size (5030 * 3 )?

我必须找到包含 5030 行和 3 列的矩阵的特征值。在使用 numpy.linalg.eig(matrix) 函数时它给我错误

LinAlgError: Last 2 **dimensions** of the array must be square

是否强制要求特征值矩阵必须是正方形。或者有什么方法可以找到大小为(5030 * 3)的矩阵的特征值。

特征值是为线性自同态定义的。因此,关联矩阵必须是方阵才能计算其特征值和特征向量。