Sitelet https://github.com/stdlib-js/math/tree/main/array
Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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