Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Base Math

Base (i.e., lower-level) math functions.

Usage

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

math

Namespace containing "base" (i.e., lower-level) math functions.

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

The namespace has the following sub-namespaces:

  • assert: standard library basic mathematical assertion utilities.
  • ops: standard library base math operators.
  • 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 ) );