Default ndarray settings.
npm install @stdlib/ndarray-defaults
Alternatively,
- To load the package in a website via a
script
tag without installation and bundlers, use the ES Module available on theesm
branch. - If you are using Deno, visit the
deno
branch. - For use in Observable, or in browser/node environments, use the Universal Module Definition (UMD) build available on the
umd
branch.
The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.
var defaults = require( '@stdlib/ndarray-defaults' );
Returns default ndarray settings.
var out = defaults();
// returns {...}
The returned object has the following properties:
-
dtypes: default data types.
- default: default data type.
- numeric: default numeric data type.
- real: default real-valued data type.
- floating_point: default floating-point data type.
- real_floating_point: default real-valued floating-point data type.
- complex_floating_point: default complex-valued floating-point data type.
- integer: default integer data type.
- signed_integer: default signed integer data type.
- unsigned_integer: default unsigned integer data type.
-
order: default memory layout.
-
casting: default casting mode.
-
index_mode: default index mode.
Returns the setting value for a provided setting name
.
var v = defaults.get( 'order' );
// returns <string>
v = defaults.get( 'dtypes.floating_point' );
// returns <string>
The setting name
corresponds to a flattened object path. For example, the setting name 'dtypes.default'
maps to the nested path o.dtypes.default
as found in the object returned by defaults()
.
var array = require( '@stdlib/ndarray-array' );
var defaults = require( '@stdlib/ndarray-defaults' );
var o = defaults();
var buf = [ [ 1, 2 ], [ 3, 4 ] ];
var opts = {
'order': o.order,
'casting': 'unsafe',
'mode': o.index_mode
};
opts.dtype = o.dtypes.default;
var x = array( buf, opts );
console.log( x.dtype );
opts.dtype = o.dtypes.floating_point;
x = array( buf, opts );
console.log( x.dtype );
opts.dtype = o.dtypes.real_floating_point;
x = array( buf, opts );
console.log( x.dtype );
opts.dtype = o.dtypes.integer;
x = array( buf, opts );
console.log( x.dtype );
opts.dtype = o.dtypes.signed_integer;
x = array( buf, opts );
console.log( x.dtype );
opts.dtype = o.dtypes.unsigned_integer;
x = array( buf, opts );
console.log( x.dtype );
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2023. The Stdlib Authors.