Skip to content

Latest commit

 

History

History
103 lines (60 loc) · 2.75 KB

File metadata and controls

103 lines (60 loc) · 2.75 KB

Base

Base ndarray statistical functions.

Usage

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

ns

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.

Examples

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

console.log( objectKeys( ns ) );