@stdlib/blas-base-diagonal-type-resolve-str
v0.1.1
Published
Return the diagonal type string associated with a supported BLAS diagonal type value.
Downloads
6
Readme
resolve
Return the diagonal type string associated with a supported BLAS diagonal type value.
Installation
npm install @stdlib/blas-base-diagonal-type-resolve-str
Usage
var resolve = require( '@stdlib/blas-base-diagonal-type-resolve-str' );
resolve( value )
Returns the diagonal type string associated with a BLAS diagonal type value.
var str2enum = require( '@stdlib/blas-base-diagonal-type-str2enum' );
var v = resolve( 'unit' );
// returns 'unit'
v = resolve( str2enum( 'unit' ) );
// returns 'unit'
If unable to resolve a diagonal type string, the function returns null
.
var v = resolve( 'beep' );
// returns null
Examples
var str2enum = require( '@stdlib/blas-base-diagonal-type-str2enum' );
var resolve = require( '@stdlib/blas-base-diagonal-type-resolve-str' );
var v = resolve( str2enum( 'unit' ) );
// returns 'unit'
v = resolve( 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.