Mode
Exponential distribution mode.
The mode for an exponential random variable with rate parameter λ is
Usage
var mode = require( '@stdlib/stats/base/dists/exponential/mode' );
mode( lambda )
Returns the mode of an exponential distribution with rate parameter lambda.
var v = mode( 9.0 );
// returns 0.0
v = mode( 0.5 );
// returns 0.0
If provided lambda < 0, the function returns NaN.
var v = mode( -1.0 );
// returns NaN
Examples
var randu = require( '@stdlib/random/base/randu' );
var round = require( '@stdlib/math/base/special/round' );
var mode = require( '@stdlib/stats/base/dists/exponential/mode' );
var lambda;
var v;
var i;
for ( i = 0; i < 10; i++ ) {
    lambda = randu() * 20.0;
    v = mode( lambda );
    console.log( 'λ: %d, mode(X;λ): %d', lambda.toFixed( 4 ), v.toFixed( 4 ) );
}
C APIs
Usage
#include "stdlib/stats/base/dists/exponential/mode.h"
stdlib_base_dists_exponential_mode( lambda )
Returns the mode of an exponential distribution.
double out = stdlib_base_dists_exponential_mode( 9.0 );
// returns 0.0
The function accepts the following arguments:
- lambda: 
[in] doublerate parameter. 
double stdlib_base_dists_exponential_mode( const double lambda );
Examples
#include "stdlib/stats/base/dists/exponential/mode.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 lambda;
    double y;
    int i;
    for ( i = 0; i < 25; i++ ) {
        lambda = random_uniform( 0.0, 20.0 );
        y = stdlib_base_dists_exponential_mode( lambda );
        printf( "λ: %lf, mode(X;λ): %lf\n", lambda, y );
    }
}