MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / beta

Method beta

JSAT/src/jsat/math/SpecialMath.java:534–537  ·  view source on GitHub ↗

Computes the Beta function B(z,w) @param z @param w @return B(z,w)

(double z, double w)

Source from the content-addressed store, hash-verified

532 * @return B(z,w)
533 */
534 public static double beta(double z, double w)
535 {
536 return exp(lnBeta(z, w));
537 }
538
539 public static double lnBeta(double z, double w)
540 {

Callers

nothing calls this directly

Calls 2

lnBetaMethod · 0.95
expMethod · 0.80

Tested by

no test coverage detected