Interface MatrixSolverResult

  • All Known Implementing Classes:
    MatrixSolverResultImpl

    public interface MatrixSolverResult
    This interface represents a result of a matrix-solve iteration.
    • Method Detail

      • getResultVector

        Jama.Matrix getResultVector()
        the resulting vector of the (pseudo) matrix inversion:

        outVector = matrix^(-1) * inVector;

        Returns:
        the resulting vector
      • getParameterSensitivities

        Jama.Matrix getParameterSensitivities()
        Returns:
        the sensitivity-value for each parameter (column-vector)
      • getParameterErrorEstimates

        Jama.Matrix getParameterErrorEstimates()
        calculates error estimates from the errors of the input parameters.
        Returns:
        a column vector with the errors for the parameters.