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 ) );
Did you find this page helpful?