Strided

Strided array math functions.

Usage

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

ns

Namespace containing strided array math functions.

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

The namespace contains the following:

  • special: strided array special math functions.

Examples

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

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