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: base math assertion utilities.
  • ops: base (i.e., lower-level) math operators.
  • special: base (i.e., lower-level) special math functions.
  • tools: base math tools.
  • utils: base math utilities.

Examples

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

console.log( objectKeys( ns ) );
Did you find this page helpful?