Base ndarray BLAS functions.
var ns = require( '@stdlib/blas/base/ndarray' );Namespace containing base ndarray BLAS functions.
var o = ns;
// returns {...}The namespace exposes the following APIs:
dasum( arrays ): calculate the sum of absolute values for all elements in a one-dimensional double-precision floating-point ndarray.ddot( arrays ): calculate the dot product of two one-dimensional double-precision floating-point ndarrays.gdot( arrays ): calculate the dot product of two one-dimensional ndarrays.sdot( arrays ): calculate the dot product of two one-dimensional single-precision floating-point ndarrays.
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/blas/base/ndarray' );
console.log( objectKeys( ns ) );