Operations

Strided array math operations.

Usage

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

ns

Namespace containing strided array math operations.

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

The namespace contains the following strided array functions:

Examples

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

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