Skip to content

Latest commit

 

History

History
100 lines (58 loc) · 2.24 KB

README.md

File metadata and controls

100 lines (58 loc) · 2.24 KB

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:

  • ops: strided array math operations.
  • special: strided array special math functions.

Examples

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

console.log( objectKeys( ns ) );