Base ndarray statistical functions.
var ns = require( '@stdlib/stats/base/ndarray' );
Namespace containing base ndarray statistical functions.
var o = ns;
// returns {...}
The namespace exposes the following APIs:
dmax( arrays )
: compute the maximum value of a one-dimensional double-precision floating-point ndarray.max( arrays )
: compute the maximum value of a one-dimensional ndarray.smax( arrays )
: compute the maximum value of a one-dimensional single-precision floating-point ndarray.
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/stats/base/ndarray' );
console.log( objectKeys( ns ) );