All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ejml.dense.row.factory.LinearSolverFactory_DDRM Maven / Gradle / Ivy

/*
 * Copyright (c) 2009-2017, Peter Abeles. All Rights Reserved.
 *
 * This file is part of Efficient Java Matrix Library (EJML).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.ejml.dense.row.factory;

import org.ejml.EjmlParameters;
import org.ejml.data.DMatrixRMaj;
import org.ejml.dense.row.decomposition.chol.CholeskyDecompositionCommon_DDRM;
import org.ejml.dense.row.decomposition.chol.CholeskyDecompositionInner_DDRM;
import org.ejml.dense.row.decomposition.lu.LUDecompositionAlt_DDRM;
import org.ejml.dense.row.decomposition.qr.QRColPivDecompositionHouseholderColumn_DDRM;
import org.ejml.dense.row.linsol.AdjustableLinearSolver_DDRM;
import org.ejml.dense.row.linsol.chol.LinearSolverChol_DDRB;
import org.ejml.dense.row.linsol.chol.LinearSolverChol_DDRM;
import org.ejml.dense.row.linsol.lu.LinearSolverLu_DDRM;
import org.ejml.dense.row.linsol.qr.*;
import org.ejml.dense.row.linsol.svd.SolvePseudoInverseSvd_DDRM;
import org.ejml.interfaces.linsol.LinearSolverDense;


/**
 * A factory for generating solvers for systems of the form A*x=b, where A and B are known and x is unknown. 
 *
 * @author Peter Abeles
 */
public class LinearSolverFactory_DDRM {

    /**
     * Creates a linear solver using LU decomposition
     */
    public static LinearSolverDense lu(int numRows ) {
        return linear(numRows);
    }

    /**
     * Creates a linear solver using Cholesky decomposition
     */
    public static LinearSolverDense chol(int numRows ) {
        return symmPosDef(numRows);
    }

    /**
     * Creates a linear solver using QR decomposition
     */
    public static LinearSolverDense qr(int numRows , int numCols ) {
        return leastSquares(numRows,numCols);
    }

    /**
     * Creates a linear solver using QRP decomposition
     */
    public static LinearSolverDense qrp(boolean computeNorm2, boolean computeQ ) {
        return leastSquaresQrPivot(computeNorm2,computeQ);
    }

    /**
     * Creates a general purpose solver.  Use this if you are not sure what you need.
     *
     * @param numRows The number of rows that the decomposition is optimized for.
     * @param numCols The number of columns that the decomposition is optimized for.
     */
    public static LinearSolverDense general(int numRows , int numCols ) {
        if( numRows == numCols )
            return linear(numRows);
        else
            return leastSquares(numRows,numCols);
    }

    /**
     * Creates a solver for linear systems.  The A matrix will have dimensions (m,m).
     *
     * @return A new linear solver.
     */
    public static LinearSolverDense linear(int matrixSize ) {
        return new LinearSolverLu_DDRM(new LUDecompositionAlt_DDRM());
    }

    /**
     * Creates a good general purpose solver for over determined systems and returns the optimal least-squares
     * solution.  The A matrix will have dimensions (m,n) where m ≥ n.
     *
     * @param numRows The number of rows that the decomposition is optimized for.
     * @param numCols The number of columns that the decomposition is optimized for.
     * @return A new least-squares solver for over determined systems.
     */
    public static LinearSolverDense leastSquares(int numRows , int numCols ) {
        if(numCols < EjmlParameters.SWITCH_BLOCK64_QR )  {
            return new LinearSolverQrHouseCol_DDRM();
        } else {
            if( EjmlParameters.MEMORY == EjmlParameters.MemoryUsage.FASTER )
                return new LinearSolverQrBlock64_DDRM();
            else
                return new LinearSolverQrHouseCol_DDRM();
        }
    }

    /**
     * Creates a solver for symmetric positive definite matrices.
     *
     * @return A new solver for symmetric positive definite matrices.
     */
    public static LinearSolverDense symmPosDef(int matrixWidth ) {
        if(matrixWidth < EjmlParameters.SWITCH_BLOCK64_CHOLESKY )  {
            CholeskyDecompositionCommon_DDRM decomp = new CholeskyDecompositionInner_DDRM(true);
            return new LinearSolverChol_DDRM(decomp);
        } else {
            if( EjmlParameters.MEMORY == EjmlParameters.MemoryUsage.FASTER )
                return new LinearSolverChol_DDRB();
            else {
                CholeskyDecompositionCommon_DDRM decomp = new CholeskyDecompositionInner_DDRM(true);
                return new LinearSolverChol_DDRM(decomp);
            }
        }
    }

    /**
     * 

* Linear solver which uses QR pivot decomposition. These solvers can handle singular systems * and should never fail. For singular systems, the solution might not be as accurate as a * pseudo inverse that uses SVD. *

* *

* For singular systems there are multiple correct solutions. The optimal 2-norm solution is the * solution vector with the minimal 2-norm and is unique. If the optimal solution is not computed * then the basic solution is returned. See {@link org.ejml.dense.row.linsol.qr.BaseLinearSolverQrp_DDRM} * for details. There is only a runtime difference for small matrices, 2-norm solution is slower. *

* *

* Two different solvers are available. Compute Q will compute the Q matrix once then use it multiple times. * If the solution for a single vector is being found then this should be set to false. If the pseudo inverse * is being found or the solution matrix has more than one columns AND solve is being called numerous multiples * times then this should be set to true. *

* * @param computeNorm2 true to compute the minimum 2-norm solution for singular systems. Try true. * @param computeQ Should it precompute Q or use house holder. Try false; * @return Pseudo inverse type solver using QR with column pivots. */ public static LinearSolverDense leastSquaresQrPivot(boolean computeNorm2 , boolean computeQ ) { QRColPivDecompositionHouseholderColumn_DDRM decomposition = new QRColPivDecompositionHouseholderColumn_DDRM(); if( computeQ ) return new SolvePseudoInverseQrp_DDRM(decomposition,computeNorm2); else return new LinearSolverQrpHouseCol_DDRM(decomposition,computeNorm2); } /** *

* Returns a solver which uses the pseudo inverse. Useful when a matrix * needs to be inverted which is singular. Two variants of pseudo inverse are provided. SVD * will tend to be the most robust but the slowest and QR decomposition with column pivots will * be faster, but less robust. *

* *

* See {@link #leastSquaresQrPivot} for additional options specific to QR decomposition based * pseudo inverse. These options allow for better runtime performance in different situations. *

* * @param useSVD If true SVD will be used, otherwise QR with column pivot will be used. * @return Solver for singular matrices. */ public static LinearSolverDense pseudoInverse(boolean useSVD ) { if( useSVD ) return new SolvePseudoInverseSvd_DDRM(); else return leastSquaresQrPivot(true,false); } /** * Create a solver which can efficiently add and remove elements instead of recomputing * everything from scratch. */ public static AdjustableLinearSolver_DDRM adjustable() { return new AdjLinearSolverQr_DDRM(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy