Special Functions

Strided array special math functions.

Usage

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

ns

Namespace containing strided array special math functions.

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

The namespace contains the following strided array functions:

Examples

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

console.log( objectKeys( ns ) );
Did you find this page helpful?