|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.numericalmethod.suanshu.analysis.function.rn2r1.BivariateRealFunction
com.numericalmethod.suanshu.analysis.function.special.LogBeta
public class LogBeta
This class represents the log of Beta function log(B(x, y)).
Γ(x)Γ(y)
log(B(x, y)) = log ( ----------- ) = logΓ(x) + logΓ(y) - logΓ(x + y)
Γ(x+y)
x > 0, y > 0
The R equivalent function is lbeta.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface com.numericalmethod.suanshu.analysis.function.Function |
|---|
Function.EvaluationException |
| Constructor Summary | |
|---|---|
LogBeta()
|
|
| Method Summary | |
|---|---|
double |
evaluate(double x,
double y)
Compute log(B(x, y)). |
| Methods inherited from class com.numericalmethod.suanshu.analysis.function.rn2r1.BivariateRealFunction |
|---|
dimension4Domain, dimension4Range, evaluate |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public LogBeta()
| Method Detail |
|---|
public double evaluate(double x,
double y)
log(B(x, y)).
evaluate in class BivariateRealFunctionx - x ≥ 0y - y ≥ 0
log(B(x, y))
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||