Skip to content
/ math Public

Files

Latest commit

d520b07 · Apr 22, 2025

History

History

base

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.
  • 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 ) );