Skip to content

Files

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Oct 27, 2022
Oct 11, 2022
Feb 10, 2019
Sep 3, 2021
Oct 11, 2022
Dec 10, 2022
Dec 14, 2022
Feb 10, 2019
Dec 12, 2022
Oct 11, 2022
Nov 9, 2021
Oct 14, 2021

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