Interface LinearSystemSolver.Solution

  • Enclosing class:
    LinearSystemSolver

    public static interface LinearSystemSolver.Solution
    This is the solution to a linear system of equations.
    • Method Detail

      • getParticularSolution

        Vector getParticularSolution​(Vector b)
        Get a particular solution for the linear system.
        Parameters:
        b - a vector
        Returns:
        a particular solution
      • getHomogeneousSoln

        List<Vector> getHomogeneousSoln()
        Get the basis of the homogeneous solution for the linear system, Ax = b. That is, the solutions for Ax = 0.
        Returns:
        the homogeneous solution