public final class SensitivityFunctionOneWay extends Object
| Modifier and Type | Method and Description | 
|---|---|
double | 
evaluate(double t)
Evaluates the Sensitivity function P(h|e)(t) = (alpha * t + beta) / (gamma * t + delta) 
 | 
double | 
evaluateDeriv(double t)
Evaluates the partial derivative of the Sensitivity function with respect to t = ((alpha*delta)-(beta*gamma))/((gamma*t + delta)^2) 
 | 
double | 
getAlpha()
Gets Alpha from the sensitivity function. 
 | 
double | 
getBeta()
Gets Beta from the sensitivity function. 
 | 
double | 
getDelta()
Gets Delta from the sensitivity function. 
 | 
double | 
getGamma()
Gets Gamma from the sensitivity function. 
 | 
double | 
getParameterValue()
Gets the original value of the parameter being analyzed. 
 | 
double | 
getProbabilityHypothesisGivenEvidence()
Gets P(h|e). 
 | 
double | 
getSensitivityValue()
Gets the sensitivity value which is the derivative of the sensitivity function evaluated at t. 
 | 
public double evaluate(double t)
t - The parameter value at which to evaluate the function.public double evaluateDeriv(double t)
t - The parameter value at which to evaluate the derivative.public double getParameterValue()
public double getProbabilityHypothesisGivenEvidence()
public double getSensitivityValue()
public double getAlpha()
public double getBeta()
public double getGamma()
public double getDelta()
Copyright © 2021. All rights reserved.