|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.math.special.Beta
public class Beta
This is a utility class that provides computation methods related to the Beta family of functions.
| Method Summary | |
|---|---|
static double |
logBeta(double a,
double b)
Returns the natural logarithm of the beta function B(a, b). |
static double |
logBeta(double a,
double b,
double epsilon,
int maxIterations)
Returns the natural logarithm of the beta function B(a, b). |
static double |
regularizedBeta(double x,
double a,
double b)
Returns the regularized beta function I(x, a, b). |
static double |
regularizedBeta(double x,
double a,
double b,
double epsilon)
Returns the regularized beta function I(x, a, b). |
static double |
regularizedBeta(double x,
double a,
double b,
double epsilon,
int maxIterations)
Returns the regularized beta function I(x, a, b). |
static double |
regularizedBeta(double x,
double a,
double b,
int maxIterations)
Returns the regularized beta function I(x, a, b). |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static double regularizedBeta(double x,
double a,
double b)
x - Value.a - Parameter a.b - Parameter b.
MaxCountExceededException - if the algorithm fails to converge.
public static double regularizedBeta(double x,
double a,
double b,
double epsilon)
x - Value.a - Parameter a.b - Parameter b.epsilon - When the absolute value of the nth item in the
series is less than epsilon the approximation ceases to calculate
further elements in the series.
MaxCountExceededException - if the algorithm fails to converge.
public static double regularizedBeta(double x,
double a,
double b,
int maxIterations)
x - the value.a - Parameter a.b - Parameter b.maxIterations - Maximum number of "iterations" to complete.
MaxCountExceededException - if the algorithm fails to converge.
public static double regularizedBeta(double x,
double a,
double b,
double epsilon,
int maxIterations)
x - the value.a - Parameter a.b - Parameter b.epsilon - When the absolute value of the nth item in the
series is less than epsilon the approximation ceases to calculate
further elements in the series.maxIterations - Maximum number of "iterations" to complete.
MaxCountExceededException - if the algorithm fails to converge.
public static double logBeta(double a,
double b)
a - Parameter a.b - Parameter b.
public static double logBeta(double a,
double b,
double epsilon,
int maxIterations)
a - Parameter a.b - Parameter b.epsilon - When the absolute value of the nth item in the
series is less than epsilon the approximation ceases to calculate
further elements in the series.maxIterations - Maximum number of "iterations" to complete.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||