public class IncompleteBetaFunction extends Object implements Function<Double,Double>
This class uses the Commons Math library implementation of the Beta function.
| Constructor and Description |
|---|
IncompleteBetaFunction(double a,
double b)
Creates an instance using the default values for the accuracy
(
10^-12) and number of iterations (10000). |
IncompleteBetaFunction(double a,
double b,
double eps,
int maxIter)
Creates an instance.
|
public IncompleteBetaFunction(double a,
double b)
10^-12) and number of iterations (10000).a - a, $a > 0$b - b, $b > 0$public IncompleteBetaFunction(double a,
double b,
double eps,
int maxIter)
a - a, $a > 0$b - b, $b > 0$eps - approximation accuracy, $\epsilon \geq 0$maxIter - maximum number of iterations, $\iter \geq 1$Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.