Documentation of 'mikera.matrixx.decompose.IQRResult' Java class
IQRResult
mikera.matrixx.decompose

Interface IQRResult

  • All Known Implementing Classes:
    QRResult


    public interface IQRResult

    QR decompositions decompose a rectangular matrix 'A' such that 'A=QR'. Where A ∈ ℜ n × m , n ≥ m, Q ∈ ℜ n × n is an orthogonal matrix, and R ∈ ℜ n × m is an upper triangular matrix. Some implementations of QR decomposition require that A has full rank.

    Some features of QR decompositions:

    • Can decompose rectangular matrices.
    • Numerically stable solutions to least-squares problem, but not as stable as SVD

    Orthogonal matrices have the following properties:

    • QQT=I
    • QT=Q-1

    • Method Detail

      • getQ

        AMatrix getQ()

        Returns the Q matrix from the decomposition.

        Returns:
        The Q matrix.
      • getR

        AMatrix getR()

        Returns the R matrix from the decomposition.

        Returns:
        The R matrix.

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.