JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1565
  • Score
    100M100P100Q133530F
  • License Apache-2.0

Return the single letter character abbreviation for an underlying array data type.

Package Exports

  • @stdlib/ndarray-base-dtype-char

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/ndarray-base-dtype-char) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Data Type Abbreviation

NPM version Build Status Coverage Status dependencies

Return the single letter abbreviation for an underlying array data type.

Installation

npm install @stdlib/ndarray-base-dtype-char

Usage

var dtypeChar = require( '@stdlib/ndarray-base-dtype-char' );

dtypeChar( dtype )

Returns the single letter character abbreviation for an underlying array data type.

var ch = dtypeChar( 'float64' );
// returns 'd'

ch = dtypeChar( 'generic' );
// returns 'o'

If provided an unknown or unsupported data type, the function returns null.

var ch = dtypeChar( 'foobar' );
// returns null

Examples

var dtypeChar = require( '@stdlib/ndarray-base-dtype-char' );

var dtypes;
var ch;
var i;

dtypes = [
    'float64',
    'float32',
    'int8',
    'uint8',
    'uint8c',
    'int16',
    'uint16',
    'int32',
    'uint32',
    'binary',
    'generic',
    'foobar'
];

for ( i = 0; i < dtypes.length; i++ ) {
    ch = dtypeChar( dtypes[ i ] );
    console.log( '%s => %s', dtypes[ i ], ch );
}

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 © 2016-2021. The Stdlib Authors.