我试图找到一个矩阵的逆。当它是奇数时,我需要计算伪逆。我无法在JAMA doc中找到类似伪逆的东西。我该如何计算?

最佳答案

贾玛为你做

documentation


public Matrix inverse()
    Matrix inverse or pseudoinverse
    Returns:
        inverse(A) if A is square, pseudoinverse otherwise.

10-05 17:51