0.1.0 • Published 11 months ago

@stdlib/blas-base-transpose-operation-resolve-str v0.1.0

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

resolve

NPM version Build Status Coverage Status

Return the transpose operation string associated with a supported BLAS transpose operation value.

Installation

npm install @stdlib/blas-base-transpose-operation-resolve-str

Usage

var resolve = require( '@stdlib/blas-base-transpose-operation-resolve-str' );

resolve( operation )

Returns the transpose operation string associated with a BLAS transpose operation value.

var str2enum = require( '@stdlib/blas-base-transpose-operation-str2enum' );

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

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

If unable to resolve a transpose operation string, the function returns null.

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

Examples

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

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

v = resolve( str2enum( 'conjugate-transpose' ) );
// returns 'conjugate-transpose'

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.