Skip to content

Latest commit

 

History

History
100 lines (58 loc) · 2.25 KB

README.md

File metadata and controls

100 lines (58 loc) · 2.25 KB

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