Interface DecompositionResult

    • Method Detail

      • solve

        default DoubleArray solve​(DoubleArray input)
        Solves $\mathbf{A}x = b$ where $\mathbf{A}$ is a (decomposed) matrix and $b$ is a vector.
        Parameters:
        input - the vector to calculate with
        Returns:
        the vector x
      • solve

        double[] solve​(double[] input)
        Solves $\mathbf{A}x = b$ where $\mathbf{A}$ is a (decomposed) matrix and $b$ is a vector.
        Parameters:
        input - the vector to calculate with
        Returns:
        the vector x
      • solve

        DoubleMatrix solve​(DoubleMatrix input)
        Solves $\mathbf{A}x = \mathbf{B}$ where $\mathbf{A}$ is a (decomposed) matrix and $\mathbf{B}$ is a matrix.
        Parameters:
        input - the matrix to calculate with
        Returns:
        the matrix x