@stdlib/math-base-special-betaln
v0.3.1
Published
Natural logarithm of the beta function.
Readme
betaln
Natural logarithm of the beta function.
The beta function, also called the Euler integral, is defined as
The beta function is related to the gamma function via the following equation
Installation
npm install @stdlib/math-base-special-betalnUsage
var betaln = require( '@stdlib/math-base-special-betaln' );betaln( x, y )
Evaluates the natural logarithm of the beta function.
var val = betaln( 0.0, 0.0 );
// returns Infinity
val = betaln( 1.0, 1.0 );
// returns 0.0
val = betaln( -1.0, 2.0 );
// returns NaN
val = betaln( 5.0, 0.2 );
// returns ~1.218
val = betaln( 4.0, 1.0 );
// returns ~-1.386Examples
var betaln = require( '@stdlib/math-base-special-betaln' );
var x;
var y;
for ( x = 0; x < 10; x++ ) {
for ( y = 10; y > 0; y-- ) {
console.log( 'x: %d, \t y: %d, \t f(x,y): %d', x, y, betaln( x, y ) );
}
}C APIs
Usage
#include "stdlib/math/base/special/betaln.h"stdlib_base_betaln( x, y )
Evaluates the natural logarithm of the beta function.
double v = stdlib_base_betaln( 5.0, 0.2 );
// returns ~1.218The function accepts the following arguments:
- x:
[in] doubleinput value. - y:
[in] doubleinput value.
double stdlib_base_betaln( const double x, const double y );Examples
#include "stdlib/math/base/special/betaln.h"
#include <stdio.h>
int main( void ) {
const double x[] = { 24.0, 32.0, 48.0, 116.0, 33.0 };
const double y[] = { 12.0, 6.0, 15.0, 52.0, 22.0 };
double out;
int i;
for ( i = 0; i < 5; i++ ) {
out = stdlib_base_betaln( x[ i ], y[ i ] );
printf( "betaln(%lf, %lf) = %lf\n", x[ i ], y[ i ], out );
}
}See Also
@stdlib/math-base/special/beta: beta function.@stdlib/math-base/special/betainc: incomplete beta function.@stdlib/math-base/special/betaincinv: inverse incomplete beta function.
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
Copyright
Copyright © 2016-2026. The Stdlib Authors.
