@stdlib/ndarray-orders

List of ndarray orders.

Usage no npm install needed!

<script type="module">
  import stdlibNdarrayOrders from 'https://cdn.skypack.dev/@stdlib/ndarray-orders';
</script>

README

Orders

NPM version Build Status Coverage Status dependencies

List of ndarray orders.

Installation

npm install @stdlib/ndarray-orders

Usage

var orders = require( '@stdlib/ndarray-orders' );

orders()

Returns a list of ndarray orders.

var out = orders();
// returns [ 'row-major', 'column-major' ]

The output array contains the following orders:

  • row-major: row-major (C-style) order.
  • column-major: column-major (Fortran-style) order.

Examples

var indexOf = require( '@stdlib/utils-index-of' );
var orders = require( '@stdlib/ndarray-orders' );

var ORDERS = orders();
var bool;

function isOrder( str ) {
    if ( indexOf( ORDERS, str ) === -1 ) {
        return false;
    }
    return true;
}

bool = isOrder( 'row-major' );
// returns true

bool = isOrder( 'column-major' );
// returns true

bool = isOrder( 'beep' );
// returns false

Notice

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.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2021. The Stdlib Authors.