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

Absolute Value

Compute an absolute value.

The absolute value is defined as

Absolute value

Usage

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

abs( x )

Computes an absolute value.

var v = abs( -1.0 );
// returns 1.0

v = abs( 2.0 );
// returns 2.0

v = abs( 0.0 );
// returns 0.0

v = abs( NaN );
// returns NaN

Notes

  • This implementation is not IEEE 754 compliant. If provided -0, the function returns -0.

    var v = abs( -0.0 );
    // returns -0.0
    

Examples

var randu = require( '@stdlib/random/base/randu' );
var round = require( '@stdlib/math/base/special/round' );
var abs = require( '@stdlib/math/base/special/fast/abs' );

var rand;
var i;

for ( i = 0; i < 100; i++ ) {
    rand = round( randu() * 100.0 ) - 50.0;
    console.log( 'abs(%d) = %d', rand, abs( rand ) );
}