Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@stdlib/blas-base-transpose-operations

stdlib-js5kApache-2.00.1.0TypeScript support: included

BLAS transpose operations.

stdlib, stdtypes, types, blas, transpose, transposition, operation, c, fortran, multidimensional, ndarray, array, utilities, utility, utils, util

readme

<summary> About stdlib... </summary>

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

Transpose Operations

NPM version Build Status Coverage Status

BLAS transpose operations.

Installation

npm install @stdlib/blas-base-transpose-operations

Usage

var transposeOperations = require( '@stdlib/blas-base-transpose-operations' );

transposeOperations()

Returns a list of BLAS transpose operations.

var out = transposeOperations();
// e.g., returns [ 'no-transpose', 'transpose', 'conjugate-transpose' ]

The output array contains the following operations:

  • no-transpose: no transposition.
  • transpose: transposition.
  • conjugate-transpose: conjugate transposition.

Examples

var contains = require( '@stdlib/array-base-assert-contains' ).factory;
var transposeOperations = require( '@stdlib/blas-base-transpose-operations' );

var isOp = contains( transposeOperations() );

var bool = isOp( 'transpose' );
// returns true

bool = isOp( 'conjugate-transpose' );
// returns true

bool = isOp( 'beep' );
// returns false

C APIs

Usage

#include "stdlib/blas/base/transpose_operations.h"

STDLIB_BLAS_TRANSPOSE_OPERATION

An enumeration of BLAS transpose operations with the following fields:

  • STDLIB_BLAS_NO_TRANSPOSE: no transposition.
  • STDLIB_BLAS_TRANSPOSE: transposition.
  • STDLIB_BLAS_CONJUGATE_TRANSPOSE: conjugate transposition.
#include "stdlib/blas/base/transpose_operations.h"

const enum STDLIB_BLAS_TRANSPOSE_OPERATION op = STDLIB_BLAS_TRANSPOSE;

Notes

  • Enumeration constants should be considered opaque values, and one should not rely on specific integer values.

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