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.

math

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 23, 2024
Nov 12, 2023
Feb 10, 2019
Apr 9, 2024
Sep 3, 2021
Jan 7, 2024
May 23, 2024
Jul 24, 2023
Jan 7, 2024
Nov 9, 2021
Aug 12, 2021

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