@stdlib/stats-base-dists-frechet-logpdf
v0.3.1
Published
Fréchet distribution logarithm of probability density function (PDF).
Readme
Logarithm of Probability Density Function
Fréchet distribution logarithm of probability density function.
The probability density function for a Fréchet random variable is
where α > 0 is the shape, s > 0 the scale and m the location parameter.
Installation
npm install @stdlib/stats-base-dists-frechet-logpdfUsage
var logpdf = require( '@stdlib/stats-base-dists-frechet-logpdf' );logpdf( x, alpha, s, m )
Evaluates the logarithm of the probability density function (PDF) for a Fréchet distribution with shape alpha, scale s, and location m at a value x.
var y = logpdf( 10.0, 2.0, 3.0, 5.0 );
// returns ~-2.298
y = logpdf( -3.0, 1.0, 2.0, -4.0 );
// returns ~-1.307
y = logpdf( 0.0, 2.0, 1.0, -1.0 );
// returns ~-0.307If provided x <= m, the function returns -Infinity.
var y = logpdf( -2.0, 2.0, 1.0, -1.0 );
// returns -InfinityIf provided NaN as any argument, the function returns NaN.
var y = logpdf( NaN, 1.0, 1.0, 0.0 );
// returns NaN
y = logpdf( 0.0, NaN, 1.0, 0.0 );
// returns NaN
y = logpdf( 0.0, 1.0, NaN, 0.0);
// returns NaN
y = logpdf( 0.0, 1.0, 1.0, NaN );
// returns NaNIf provided alpha <= 0, the function returns NaN.
var y = logpdf( 2.0, -0.1, 1.0, 1.0 );
// returns NaN
y = logpdf( 2.0, 0.0, 1.0, 1.0 );
// returns NaNIf provided s <= 0, the function returns NaN.
var y = logpdf( 2.0, 1.0, -1.0, 1.0 );
// returns NaN
y = logpdf( 2.0, 1.0, 0.0, 1.0 );
// returns NaNlogpdf.factory( alpha, s, m )
Returns a function for evaluating the logarithm of the probability density function of a Fréchet distribution with shape alpha, scale s, and location m.
var mylogpdf = logpdf.factory( 3.0, 3.0, 5.0 );
var y = mylogpdf( 10.0 );
// returns ~-2.259
y = mylogpdf( 7.0 );
// returns ~-1.753Notes
- In virtually all cases, using the
logpdforlogcdffunctions is preferable to manually computing the logarithm of thepdforcdf, respectively, since the latter is prone to overflow and underflow.
Examples
var randu = require( '@stdlib/random-base-randu' );
var logpdf = require( '@stdlib/stats-base-dists-frechet-logpdf' );
var alpha;
var m;
var s;
var x;
var y;
var i;
for ( i = 0; i < 100; i++ ) {
alpha = randu() * 10.0;
x = randu() * 10.0;
s = randu() * 10.0;
m = randu() * 10.0;
y = logpdf( x, alpha, s, m );
console.log( 'x: %d, α: %d, s: %d, m: %d, ln(f(x;α,s,m)): %d', x.toFixed( 4 ), alpha.toFixed( 4 ), s.toFixed( 4 ), m.toFixed( 4 ), y.toFixed( 4 ) );
}C APIs
Usage
#include "stdlib/stats/base/dists/frechet/logpdf.h"stdlib_base_dists_frechet_logpdf( x, alpha, s, m )
Evaluates the logarithm of the probability density function (PDF) for a Fréchet distribution with shape alpha, scale s, and location m at a value x.
double y = stdlib_base_dists_frechet_logpdf( 10.0, 2.0, 3.0, 2.0 );
// returns ~-3.489The function accepts the following arguments:
- x:
[in] doubleinput value. - alpha:
[in] doubleshape parameter. - s:
[in] doublescale parameter. - m:
[in] doublelocation parameter.
double stdlib_base_dists_frechet_logpdf( const double x, const double alpha, const double s, const double m );Examples
#include "stdlib/stats/base/dists/frechet/logpdf.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 x;
double s;
double m;
double y;
int i;
for ( i = 0; i < 10; i++ ) {
alpha = random_uniform( 0.0, 10.0 );
x = random_uniform( 0.0, 10.0 );
s = random_uniform( 0.0, 10.0 );
m = random_uniform( 0.0, 10.0 );
y = stdlib_base_dists_frechet_logpdf( x, alpha, s, m );
printf( "x: %lf, α: %lf, s: %lf, m: %lf, ln(f(x;α,s,m)): %lf\n", x, alpha, s, m, y );
}
}
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2026. The Stdlib Authors.
