@stdlib/blas-base-diagonal-type-enum2str
v0.1.1
Published
Return the BLAS diagonal type string associated with a BLAS diagonal type enumeration constant.
Downloads
60
Readme
enum2str
Return the BLAS diagonal type string associated with a BLAS diagonal type enumeration constant.
Installation
npm install @stdlib/blas-base-diagonal-type-enum2str
Usage
var enum2str = require( '@stdlib/blas-base-diagonal-type-enum2str' );
enum2str( value )
Returns the BLAS diagonal type string associated with a BLAS diagonal type enumeration constant.
var str2enum = require( '@stdlib/blas-base-diagonal-type-str2enum' );
var v = str2enum( 'unit' );
// returns <number>
var s = enum2str( v );
// returns 'unit'
If unable to resolve a diagonal type string, the function returns null
.
var v = enum2str( -999999999 );
// returns null
Examples
var str2enum = require( '@stdlib/blas-base-diagonal-type-str2enum' );
var enum2str = require( '@stdlib/blas-base-diagonal-type-enum2str' );
var str = enum2str( str2enum( 'unit' ) );
// returns 'unit'
str = enum2str( str2enum( 'non-unit' ) );
// returns 'non-unit'
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
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.