Interface MatrixSolverResult
-
- All Known Implementing Classes:
MatrixSolverResultImpl
public interface MatrixSolverResultThis interface represents a result of a matrix-solve iteration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Jama.MatrixgetParameterErrorEstimates()calculates error estimates from the errors of the input parameters.Jama.MatrixgetParameterSensitivities()Jama.MatrixgetResultVector()the resulting vector of the (pseudo) matrix inversion:
-
-
-
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.
-
-