Logarithm of Cumulative Distribution Function
Evaluate the natural logarithm of the cumulative distribution function for an exponential distribution.
The cumulative distribution function for an exponential random variable is
where λ
is the rate parameter.
Usage
var logcdf = require( '@stdlib/stats/base/dists/exponential/logcdf' );
logcdf( x, lambda )
Evaluates the natural logarithm of the cumulative distribution function for an exponential distribution with rate parameter lambda
.
var y = logcdf( 2.0, 0.3 );
// returns ~-0.796
y = logcdf( 10.0, 0.3 );
// returns ~-0.051
If provided NaN
as any argument, the function returns NaN
.
var y = logcdf( NaN, 0.0 );
// returns NaN
y = logcdf( 0.0, NaN );
// returns NaN
If provided lambda < 0
, the function returns NaN
.
var y = logcdf( 2.0, -1.0 );
// returns NaN
logcdf.factory( lambda )
Returns a function for evaluating the natural logarithm of the cumulative distribution function (CDF) for an exponential distribution with rate parameter lambda
.
var mylogcdf = logcdf.factory( 0.1 );
var y = mylogcdf( 8.0 );
// returns ~-0.597
y = mylogcdf( 2.0 );
// returns ~-1.708
y = mylogcdf( 0.0 );
// returns -Infinity
Notes
- In virtually all cases, using the
logpdf
orlogcdf
functions is preferable to manually computing the logarithm of thepdf
orcdf
, respectively, since the latter is prone to overflow and underflow.
Examples
var randu = require( '@stdlib/random/base/randu' );
var logcdf = require( '@stdlib/stats/base/dists/exponential/logcdf' );
var lambda;
var x;
var y;
var i;
for ( i = 0; i < 10; i++ ) {
x = randu() * 10.0;
lambda = randu() * 10.0;
y = logcdf( x, lambda );
console.log( 'x: %d, λ: %d, ln(F(x;λ)): %d', x, lambda, y );
}
C APIs
Usage
#include "stdlib/stats/base/dists/exponential/cdf.h"
stdlib_base_dists_exponential_cdf( x, lambda )
Evaluates the natural logarithm of the cumulative distribution function (CDF) for an exponential distribution with rate parameter lambda
.
double out = stdlib_base_dists_exponential_logcdf( 2.0, 0.1 );
// returns ~-1.708
The function accepts the following arguments:
- x:
[in] double
input value. - lambda:
[in] double
rate parameter.
double stdlib_base_dists_exponential_logcdf( const double x, const double lambda );
Examples
#include "stdlib/stats/base/dists/exponential/logcdf.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 lambda;
double x;
double y;
int i;
for ( i = 0; i < 25; i++ ) {
x = random_uniform( 0.0, 100.0 );
lambda = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
y = stdlib_base_dists_exponential_logcdf( x, lambda );
printf( "x: %lf, λ: %lf, ln(F(x;λ)): %lf\n", x, lambda, y );
}
}