Skip to content

Files

Latest commit

dd317a4 · Apr 17, 2025

History

History

array

Math

Math functions applied to arrays.

Usage

var ns = require( '@stdlib/math/array' );

ns

Namespace containing math functions applied to arrays.

var o = ns;
// returns {...}

The namespace consists of the following sub-namespaces:

  • special: special math functions applied to arrays.
  • tools: math array function tools.

Examples

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

console.log( objectKeys( ns ) );