Documentation of 'org.ejml.alg.dense.linsol.qr.LinearSolverQr_D64' Java class
LinearSolverQr_D64
org.ejml.alg.dense.linsol.qr

Class LinearSolverQr_D64

  • All Implemented Interfaces:
    LinearSolver<DenseMatrix64F>
    Direct Known Subclasses:
    AdjLinearSolverQr_D64


    public class LinearSolverQr_D64
    extends LinearSolverAbstract_D64

    A solver for a generic QR decomposition algorithm. This will in general be a bit slower than the specialized once since the full Q and R matrices need to be extracted.

    It solve for x by first multiplying b by the transpose of Q then solving for the result.
    QRx=b
    Rx=Q^T b

    • Constructor Detail

    • Method Detail

      • setMaxSize

        public void setMaxSize(int maxRows,
                               int maxCols)
        Changes the size of the matrix it can solve for
        Parameters:
        maxRows - Maximum number of rows in the matrix it will decompose.
        maxCols - Maximum number of columns in the matrix it will decompose.
      • setA

        public boolean setA(DenseMatrix64F A)
        Performs QR decomposition on A
        Parameters:
        A - not modified.
        Returns:
        true if it can be processed.
      • quality

        public double quality()
        Description copied from interface: LinearSolver

        Returns a very quick to compute measure of how singular the system is. This measure will be invariant to the scale of the matrix and always be positive, with larger values indicating it is less singular. If not supported by the solver then the runtime exception IllegalArgumentException is thrown. This is NOT the matrix's condition.

        How this function is implemented is not specified. One possible implementation is the following: In many decompositions a triangular matrix is extracted. The determinant of a triangular matrix is easily computed and once normalized to be scale invariant and its absolute value taken it will provide functionality described above.

        Returns:
        The quality of the linear system.
      • solve

        public void solve(DenseMatrix64F B,
                          DenseMatrix64F X)
        Solves for X using the QR decomposition.
        Parameters:
        B - A matrix that is n by m. Not modified.
        X - An n by m matrix where the solution is written to. Modified.
      • getDecomposition

        public QRDecomposition<DenseMatrix64F> getDecomposition()
        Description copied from interface: LinearSolver
        If a decomposition class was used internally then this will return that class. Most linear solvers decompose the input matrix into a more simplistic form. However some solutions do not require decomposition, e.g. inverse by minor.
        Returns:
        Internal decomposition class. If there is none then null.

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.