Skip to content

Latest commit

 

History

History

math

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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: base (i.e., lower-level) math functions.
  • iter: math iterators.
  • special: special math functions.
  • strided: strided array math functions.
  • tools: math tools.

Examples

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

console.log( objectKeys( math ) );