Skip to content

Latest commit

 

History

History
107 lines (63 loc) · 3.04 KB

README.md

File metadata and controls

107 lines (63 loc) · 3.04 KB

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 objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/math/base' );

console.log( objectKeys( ns ) );