time-to-botec/squiggle/node_modules/@stdlib/stats/base/dists/chi/entropy
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Entropy

Chi distribution differential entropy.

The differential entropy (in nats) for a chi random variable is

Differential entropy for a chi distribution.

where k > 0 is the degrees of freedom and Γ and Ψ denote the gamma and digamma functions, respectively.

Usage

var entropy = require( '@stdlib/stats/base/dists/chi/entropy' );

entropy( k )

Returns the differential entropy of a chi distribution with degrees of freedom k (in nats).

var v = entropy( 9.0 );
// returns ~1.052

v = entropy( 0.5 );
// returns ~0.135

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

var v = entropy( -1.0 );
// returns NaN

Examples

var randu = require( '@stdlib/random/base/randu' );
var round = require( '@stdlib/math/base/special/round' );
var entropy = require( '@stdlib/stats/base/dists/chi/entropy' );

var k;
var v;
var i;

for ( i = 0; i < 10; i++ ) {
    k = randu() * 20.0;
    v = entropy( k );
    console.log( 'k: %d, h(X,k): %d', k.toFixed( 4 ), v.toFixed( 4 ) );
}