Tabnine Logo
Beta.logGammaMinusLogGammaSum
Code IndexAdd Tabnine to your IDE (free)

How to use
logGammaMinusLogGammaSum
method
in
org.apache.commons.math3.special.Beta

Best Java code snippets using org.apache.commons.math3.special.Beta.logGammaMinusLogGammaSum (Showing top 3 results out of 315)

origin: org.apache.commons/commons-math3

       logGammaMinusLogGammaSum(ared, b));
} else {
  double prod1 = 1.0;
    return FastMath.log(prod1) +
        Gamma.logGamma(ared) +
        logGammaMinusLogGammaSum(ared, b);
  } else {
    return Gamma.logGamma(a) +
        logGammaMinusLogGammaSum(a, b);
if (b >= 10.0) {
  return Gamma.logGamma(a) +
      logGammaMinusLogGammaSum(a, b);
} else {
origin: geogebra/geogebra

       logGammaMinusLogGammaSum(ared, b));
} else {
  double prod1 = 1.0;
    return Math.log(prod1) +
        Gamma.logGamma(ared) +
        logGammaMinusLogGammaSum(ared, b);
  } else {
    return Gamma.logGamma(a) +
        logGammaMinusLogGammaSum(a, b);
if (b >= 10.0) {
  return Gamma.logGamma(a) +
      logGammaMinusLogGammaSum(a, b);
} else {
origin: io.virtdata/virtdata-lib-realer

       logGammaMinusLogGammaSum(ared, b));
} else {
  double prod1 = 1.0;
    return FastMath.log(prod1) +
        Gamma.logGamma(ared) +
        logGammaMinusLogGammaSum(ared, b);
  } else {
    return Gamma.logGamma(a) +
        logGammaMinusLogGammaSum(a, b);
if (b >= 10.0) {
  return Gamma.logGamma(a) +
      logGammaMinusLogGammaSum(a, b);
} else {
org.apache.commons.math3.specialBetalogGammaMinusLogGammaSum

Javadoc

Returns the value of log[?(b) / ?(a + b)] for a ? 0 and b ? 10. Based on the NSWC Library of Mathematics Subroutines double precision implementation, DLGDIV. In BetaTest.testLogGammaMinusLogGammaSum(), this private method is accessed through reflection.

Popular methods of Beta

  • regularizedBeta
    Returns the regularized beta function I(x, a, b).
  • deltaMinusDeltaSum
    Returns the value of Δ(b) - Δ(a + b), with 0 ≤ a ≤ b and b ≥ 10. Based on equations (26), (27) and (
  • logBeta
    Returns the natural logarithm of the beta function B(a, b). The implementation of this method is bas
  • logGammaSum
    Returns the value of log Γ(a + b) for 1 ≤ a, b ≤ 2. Based on theNSWC Library of Mathematics Subrouti
  • sumDeltaMinusDeltaSum
    Returns the value of Δ(p) + Δ(q) - Δ(p + q), with p, q ≥ 10. Based on the NSWC Library of Mathematic

Popular in Java

  • Start an intent from android
  • getContentResolver (Context)
  • addToBackStack (FragmentTransaction)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now