time-to-botec/squiggle/node_modules/@stdlib/math/base/special/fast/min
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

min

Return the minimum value.

Usage

var min = require( '@stdlib/math/base/special/fast/min' );

min( x, y )

Returns the minimum value.

var v = min( 4.2, 3.14 );
// returns 3.14

Notes

  • The implementation ignores the sign of 0.

    var v = min( +0.0, -0.0 );
    // returns -0.0
    
    v = min( -0.0, +0.0 );
    // returns +0.0
    
  • The implementation does not check for NaN arguments.

    var v = min( 3.14, NaN );
    // returns NaN
    
    v = min( NaN, 3.14 );
    // returns 3.14
    

Examples

var minstd = require( '@stdlib/random/base/minstd-shuffle' );
var min = require( '@stdlib/math/base/special/fast/min' );

var x;
var y;
var v;
var i;

for ( i = 0; i < 100; i++ ) {
    x = minstd();
    y = minstd();
    v = min( x, y );
    console.log( 'min(%d,%d) = %d', x, y, v );
}