@stdlib/stats-base-dists-f-mode
v0.3.1
Published
F distribution mode.
Readme
Mode
The mode for a F random variable with numerator degrees of freedom d1 and denominator degrees of freedom d2 is
for d1 > 2 and d2 > 0. Otherwise, the mode is not defined.
Installation
npm install @stdlib/stats-base-dists-f-modeUsage
var mode = require( '@stdlib/stats-base-dists-f-mode' );mode( d1, d2 )
Returns the mode of an F distribution with parameters d1 (numerator degrees of freedom) and d2 (denominator degrees of freedom).
var v = mode( 4.0, 5.0 );
// returns ~0.357
v = mode( 4.0, 12.0 );
// returns ~0.429
v = mode( 8.0, 4.0 );
// returns 0.5If provided NaN as any argument, the function returns NaN.
var v = mode( NaN, 3.0 );
// returns NaN
v = mode( 3.0, NaN );
// returns NaNIf provided d1 <= 2, the function returns NaN.
var v = mode( 1.0, 3.0 );
// returns NaN
v = mode( -1.0, 3.0 );
// returns NaNIf provided d2 <= 0, the function returns NaN.
var v = mode( 3.0, 0.0 );
// returns NaN
v = mode( 3.0, -1.0 );
// returns NaNExamples
var uniform = require( '@stdlib/random-array-uniform' );
var logEachMap = require( '@stdlib/console-log-each-map' );
var EPS = require( '@stdlib/constants-float64-eps' );
var mode = require( '@stdlib/stats-base-dists-f-mode' );
var opts = {
'dtype': 'float64'
};
var d1 = uniform( 10, EPS, 10.0, opts );
var d2 = uniform( 10, EPS, 10.0, opts );
logEachMap( 'd1: %0.4f, d2: %0.4f, mode(X;d1,d2): %0.4f', d1, d2, mode );C APIs
Usage
#include "stdlib/stats/base/dists/f/mode.h"stdlib_base_dists_f_mode( d1, d2 )
Evaluates the mode of an F distribution with parameters d1 (numerator degrees of freedom) and d2 (denominator degrees of freedom).
double out = stdlib_base_dists_f_mode( 3.0, 5.0 );
// returns ~0.238The function accepts the following arguments:
- d1:
[in] doublenumerator degrees of freedom. - d2:
[in] doubledenominator degrees of freedom.
double stdlib_base_dists_f_mode( const double d1, const double d2 );Examples
#include "stdlib/stats/base/dists/f/mode.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 d1;
double d2;
double y;
int i;
for ( i = 0; i < 25; i++ ) {
d1 = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
d2 = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
y = stdlib_base_dists_f_mode( d1, d2 );
printf( "d1: %lf, d2: %lf, mode(X;d1,d2): %lf\n", d1, d2, 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.
