Documentation of 'org.ejml.alg.dense.linsol.AdjustableLinearSolver' Java class
AdjustableLinearSolver
org.ejml.alg.dense.linsol

Interface AdjustableLinearSolver

  • All Superinterfaces:
    LinearSolver<DenseMatrix64F>
    All Known Implementing Classes:
    AdjLinearSolverQr_D64


    public interface AdjustableLinearSolver
    extends LinearSolver<DenseMatrix64F>
    In many situations solutions to linear systems that share many of the same data points are needed. This can happen when solving using the most recent data or when rejecting outliers. In these situations it is possible to solve these related systems much faster than solving the entire data set again.
    See Also:
    LinearSolver
    • Method Detail

      • addRowToA

        boolean addRowToA(double[] A_row,
                          int rowIndex)
        Adds a row to A. This has the same effect as creating a new A and calling LinearSolver.setA(T).
        Parameters:
        A_row - The row in A.
        rowIndex - Where the row appears in A.
        Returns:
        if it succeeded or not.
      • removeRowFromA

        boolean removeRowFromA(int index)
        Removes a row from A. This has the same effect as creating a new A and calling LinearSolver.setA(T).
        Parameters:
        index - which row is removed from A.
        Returns:
        If it succeeded or not.

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.