Mode

Inverse gamma distribution mode.

The mode for an inverse gamma random variable is

m o d e left-parenthesis upper X right-parenthesis equals StartFraction beta Over alpha plus 1 EndFraction

where α > 0 is the shape parameter and β > 0 is the rate parameter.

Usage

var mode = require( '@stdlib/stats/base/dists/invgamma/mode' );

mode( alpha, beta )

Returns the mode of an inverse gamma distribution with parameters alpha (shape parameter) and beta (rate parameter).

var v = mode( 1.0, 1.0 );
// returns 0.5

v = mode( 4.0, 12.0 );
// returns 2.4

v = mode( 8.0, 2.0 );
// returns ~0.222

If provided NaN as any argument, the function returns NaN.

var v = mode( NaN, 2.0 );
// returns NaN

v = mode( 2.0, NaN );
// returns NaN

If provided alpha <= 0, the function returns NaN.

var v = mode( 0.0, 1.0 );
// returns NaN

v = mode( -1.0, 1.0 );
// returns NaN

If provided beta <= 0, the function returns NaN.

var v = mode( 1.0, 0.0 );
// returns NaN

v = mode( 1.0, -1.0 );
// returns NaN

Examples

var randu = require( '@stdlib/random/base/randu' );
var EPS = require( '@stdlib/constants/float64/eps' );
var mode = require( '@stdlib/stats/base/dists/invgamma/mode' );

var alpha;
var beta;
var v;
var i;

for ( i = 0; i < 10; i++ ) {
    alpha = ( randu()*10.0 ) + EPS;
    beta = ( randu()*10.0 ) + EPS;
    v = mode( alpha, beta );
    console.log( 'α: %d, β: %d, mode(X;α,β): %d', alpha.toFixed( 4 ), beta.toFixed( 4 ), v.toFixed( 4 ) );
}

C APIs

Usage

#include "stdlib/stats/base/dists/invgamma/mode.h"

stdlib_base_dists_invgamma_mode( alpha, beta )

Evaluates the mode of an inverse gamma distribution with parameters alpha (shape parameter) and beta (rate parameter).

double out = stdlib_base_dists_invgamma_mode( 1.0, 1.0 );
// returns 0.5

The function accepts the following arguments:

  • alpha: [in] double shape parameter.
  • beta: [in] double rate parameter.
double stdlib_base_dists_invgamma_mode( const double alpha, const double beta );

Examples

#include "stdlib/stats/base/dists/invgamma/mode.h"
#include "stdlib/constants/float64/eps.h"
#include <stdlib.h>
#include <stdio.h>

static double random_uniform( const double min, const double max ) {
    double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
    return min + ( v*(max-min) );
}

int main( void ) {
    double alpha;
    double beta;
    double y;
    int i;

    for ( i = 0; i < 25; i++ ) {
        a = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
        b = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
        y = stdlib_base_dists_invgamma_mode( alpha, beta );
        printf( "α: %lf, β: %lf, mode(X;α,β): %lf\n", alpha, beta, y );
    }
}
Did you find this page helpful?