Skip to content

Files

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Latest commit

1f9cb76 · Jun 7, 2024

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 12, 2024
Nov 12, 2023
Feb 10, 2019
Sep 3, 2021
May 25, 2024
May 25, 2024
Jun 7, 2024
Jul 24, 2023
Apr 22, 2024
Nov 12, 2023
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 ) );