Skip to content

Latest commit

 

History

History
99 lines (58 loc) · 2.09 KB

File metadata and controls

99 lines (58 loc) · 2.09 KB

Special Functions

Special math functions applied to arrays.

Usage

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

ns

Namespace containing special math functions applied to arrays.

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

The namespace contains the following:

Examples

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

// Create an input array:
var x = [ -1.0, 2.0, -3.0, 4.0 ];

// Perform element-wise computation:
var out = ns.abs( x );
// returns [ 1.0, 2.0, 3.0, 4.0 ]