Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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 ) );