ndarray

Multidimensional arrays.

Usage

var ns = require( '@stdlib/ndarray' );

ns

ndarray namespace.

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

The namespace exports the following functions to create multidimensional arrays:

The namespace contains the following sub-namespaces:

In addition, the namespace contaians the following multidimensional array utility functions:

Examples

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

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