Special Functions

Fast math special functions.

Usage

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

fmath

Namespace containing "fast" math special functions.

var fcns = fmath;
// returns {...}

Notes

  • Implementations may violate strict IEEE semantics.
  • Implementations may assume arguments and results are not NaN.
  • Implementations may assume arguments are neither positive or negative infinity.
  • Implementations may ignore the sign of zero.

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var fmath = require( '@stdlib/math/base/special/fast' );

console.log( objectKeys( fmath ) );
Did you find this page helpful?