0.0.1 • Published 11 months ago

@stdlib/blas-base-matrix-triangle-resolve-str v0.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
11 months ago

resolve

NPM version Build Status Coverage Status

Return the matrix triangle string associated with a supported BLAS matrix triangle value.

Installation

npm install @stdlib/blas-base-matrix-triangle-resolve-str

Usage

var resolve = require( '@stdlib/blas-base-matrix-triangle-resolve-str' );

resolve( value )

Returns the matrix triangle string associated with a BLAS matrix triangle value.

var str2enum = require( '@stdlib/blas-base-matrix-triangle-str2enum' );

var v = resolve( 'upper' );
// returns 'upper'

v = resolve( str2enum( 'upper' ) );
// returns 'upper'

If unable to resolve a matrix triangle string, the function returns null.

var v = resolve( 'beep' );
// returns null

Examples

var str2enum = require( '@stdlib/blas-base-matrix-triangle-str2enum' );
var resolve = require( '@stdlib/blas-base-matrix-triangle-resolve-str' );

var v = resolve( str2enum( 'upper' ) );
// returns 'upper'

v = resolve( str2enum( 'lower' ) );
// returns 'lower'

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