Skip to content

Files

Latest commit

a09bb73 · Jan 16, 2019

History

History

Base Math

Standard library math base implementations.

Usage

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

math

Standard library base math.

var ns = math;
// returns {...}

The namespace contains the following sub-namespaces:

  • assert: standard library basic mathematical assertion utilities.
  • complex: standard library base complex number math functions.
  • special: standard library base special math functions.
  • tools: standard library basic mathematical tools.
  • utils: standard library basic mathematical utilities.

Examples

var getKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/math/base' );

console.log( getKeys( ns ) );