Skip to content

Latest commit

 

History

History

ndarray

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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 ) );