Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Math

Math functions.

Usage

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

math

Namespace containing math functions.

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

The namespace consists of the following sub-namespaces:

  • base: standard library math base implementations.
  • iter: standard library math iterators.
  • special: standard library special math functions.
  • strided: standard library strided math functions.
  • tools: standard library math tools.

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var math = require( '@stdlib/math' );

console.log( objectKeys( math ) );