@stdlib/ndarray-orders
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

Orders

NPM version Build Status Coverage Status

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

See Also


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-2022. The Stdlib Authors.

Install

npm i @stdlib/ndarray-orders

Homepage

stdlib.io

DownloadsWeekly Downloads

2,238

Version

0.0.8

License

Apache-2.0

Unpacked Size

39 kB

Total Files

13

Last publish

Collaborators

  • stdlib-bot
  • kgryte
  • planeshifter
  • rreusser