time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (570B)


      1 
      2 {{alias}}( α, β )
      3     Returns the differential entropy of an inverse gamma distribution.
      4 
      5     If `α <= 0` or `β <= 0`, the function returns `NaN`.
      6 
      7     If `α` or `β` is `NaN`, the function returns `NaN`.
      8 
      9     Parameters
     10     ----------
     11     α: number
     12         Shape parameter.
     13 
     14     β: number
     15         Rate parameter.
     16 
     17     Returns
     18     -------
     19     out: number
     20         Entropy.
     21 
     22     Examples
     23     --------
     24     > var v = {{alias}}( 1.0, 1.0 )
     25     ~2.154
     26     > v = {{alias}}( 4.0, 12.0 )
     27     ~1.996
     28     > v = {{alias}}( 8.0, 2.0 )
     29     ~-0.922
     30 
     31     See Also
     32     --------
     33