Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stdlib-js/blas-base
Standard library basic linear algebra subprograms (BLAS).
https://github.com/stdlib-js/blas-base
algebra array basic blas javascript level-1 lib library linear math mathematics ndarray node node-js nodejs routines standard stdlib subprograms vector
Last synced: about 3 hours ago
JSON representation
Standard library basic linear algebra subprograms (BLAS).
- Host: GitHub
- URL: https://github.com/stdlib-js/blas-base
- Owner: stdlib-js
- License: apache-2.0
- Created: 2021-06-15T18:11:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-20T03:19:05.000Z (about 7 hours ago)
- Last Synced: 2024-11-20T04:20:24.294Z (about 6 hours ago)
- Topics: algebra, array, basic, blas, javascript, level-1, lib, library, linear, math, mathematics, ndarray, node, node-js, nodejs, routines, standard, stdlib, subprograms, vector
- Language: JavaScript
- Homepage: https://github.com/stdlib-js/stdlib
- Size: 4.41 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Security: SECURITY.md
Awesome Lists containing this project
README
About stdlib...
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!
# BLAS
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
> Base (i.e., lower-level) basic linear algebra subprograms (BLAS).
## Installation
```bash
npm install @stdlib/blas-base
```Alternatively,
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]).
- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions).
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]).The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships.
To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
## Usage
```javascript
var blas = require( '@stdlib/blas-base' );
```#### blas
Namespace for "base" (i.e., lower-level) basic linear algebra subprograms (BLAS).
```javascript
var o = blas;
// returns {...}
```### BLAS Level 1
- [`caxpy( N, ca, cx, strideX, cy, strideY )`][@stdlib/blas/base/caxpy]: scale a single-precision complex floating-point vector by a single-precision complex floating-point constant and add the result to a single-precision complex floating-point vector.
- [`ccopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/ccopy]: copy values from one complex single-precision floating-point vector to another complex single-precision floating-point vector.
- [`cscal( N, ca, cx, strideX )`][@stdlib/blas/base/cscal]: scales a single-precision complex floating-point vector by a single-precision complex floating-point constant.
- [`csrot( N, cx, strideX, cy, strideY, c, s )`][@stdlib/blas/base/csrot]: applies a plane rotation.
- [`cswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/cswap]: interchange two complex single-precision floating-point vectors.
- [`dasum( N, x, stride )`][@stdlib/blas/base/dasum]: compute the sum of absolute values (_L1_ norm).
- [`daxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/daxpy]: multiply a vector `x` by a constant `alpha` and add the result to `y`.
- [`dcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/dcopy]: copy values from `x` into `y`.
- [`ddot( N, x, strideX, y, strideY )`][@stdlib/blas/base/ddot]: calculate the dot product of two double-precision floating-point vectors.
- [`dnrm2( N, x, stride )`][@stdlib/blas/base/dnrm2]: calculate the L2-norm of a double-precision floating-point vector.
- [`drot( N, x, strideX, y, strideY, c, s )`][@stdlib/blas/base/drot]: apply a plane rotation.
- [`drotg( a, b )`][@stdlib/blas/base/drotg]: construct a Givens plane rotation.
- [`drotm( N, x, strideX, y, strideY, param )`][@stdlib/blas/base/drotm]: apply a modified Givens plane rotation.
- [`dscal( N, alpha, x, stride )`][@stdlib/blas/base/dscal]: multiply a double-precision floating-point vector `x` by a constant `alpha`.
- [`dsdot( N, x, strideX, y, strideY )`][@stdlib/blas/base/dsdot]: calculate the dot product with extended accumulation and result of two single-precision floating-point vectors.
- [`dswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/dswap]: interchange two double-precision floating-point vectors.
- [`dznrm2( N, zx, strideX )`][@stdlib/blas/base/dznrm2]: compute the L2-norm of a complex double-precision floating-point vector.
- [`gasum( N, x, stride )`][@stdlib/blas/base/gasum]: compute the sum of absolute values (_L1_ norm).
- [`gaxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/gaxpy]: multiply `x` by a constant `alpha` and add the result to `y`.
- [`gcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/gcopy]: copy values from `x` into `y`.
- [`gdot( N, x, strideX, y, strideY )`][@stdlib/blas/base/gdot]: calculate the dot product of two vectors.
- [`gnrm2( N, x, stride )`][@stdlib/blas/base/gnrm2]: calculate the L2-norm of a vector.
- [`gscal( N, alpha, x, stride )`][@stdlib/blas/base/gscal]: multiply a vector `x` by a constant `alpha`.
- [`gswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/gswap]: interchange two vectors.
- [`idamax( N, x, strideX )`][@stdlib/blas/base/idamax]: find the index of the first element having the maximum absolute value.
- [`isamax( N, x, strideX )`][@stdlib/blas/base/isamax]: find the index of the first element having the maximum absolute value.
- [`sasum( N, x, stride )`][@stdlib/blas/base/sasum]: compute the sum of absolute values (_L1_ norm).
- [`saxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/saxpy]: multiply a vector `x` by a constant `alpha` and add the result to `y`.
- [`scasum( N, cx, strideX )`][@stdlib/blas/base/scasum]: compute the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point vector.
- [`scnrm2( N, cx, strideX )`][@stdlib/blas/base/scnrm2]: compute the L2-norm of a complex single-precision floating-point vector.
- [`scopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/scopy]: copy values from `x` into `y`.
- [`sdot( N, x, strideX, y, strideY )`][@stdlib/blas/base/sdot]: calculate the dot product of two single-precision floating-point vectors.
- [`sdsdot( N, scalar, x, strideX, y, strideY )`][@stdlib/blas/base/sdsdot]: calculate the dot product of two single-precision floating-point vectors with extended accumulation.
- [`snrm2( N, x, stride )`][@stdlib/blas/base/snrm2]: calculate the L2-norm of a single-precision floating-point vector.
- [`srot( N, x, strideX, y, strideY, c, s )`][@stdlib/blas/base/srot]: apply a plane rotation.
- [`srotg( a, b )`][@stdlib/blas/base/srotg]: construct a Givens plane rotation.
- [`srotm( N, x, strideX, y, strideY, param )`][@stdlib/blas/base/srotm]: apply a modified Givens plane rotation.
- [`sscal( N, alpha, x, stride )`][@stdlib/blas/base/sscal]: multiply a single-precision floating-point vector `x` by a constant `alpha`.
- [`sswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/sswap]: interchange two single-precision floating-point vectors.
- [`zaxpy( N, za, zx, strideX, zy, strideY )`][@stdlib/blas/base/zaxpy]: scale a double-precision complex floating-point vector by a double-precision complex floating-point constant and add the result to a double-precision complex floating-point vector.
- [`zcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/zcopy]: copy values from one complex double-precision floating-point vector to another complex double-precision floating-point vector.
- [`zdrot( N, zx, strideX, zy, strideY, c, s )`][@stdlib/blas/base/zdrot]: applies a plane rotation.
- [`zscal( N, za, zx, strideX )`][@stdlib/blas/base/zscal]: scales a double-precision complex floating-point vector by a double-precision complex floating-point constant.
- [`zswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/zswap]: interchange two complex double-precision floating-point vectors.### BLAS Level 2
- [`dspmv( order, uplo, N, α, AP, x, sx, β, y, sy )`][@stdlib/blas/base/dspmv]: perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors and, `A` is an `N` by `N` symmetric matrix supplied in packed form.
- [`dsymv( order, uplo, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/dsymv]: perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.
- [`dsyr( order, uplo, N, α, x, sx, A, LDA )`][@stdlib/blas/base/dsyr]: perform the symmetric rank 1 operation `A = α*x*x^T + A`.
- [`dsyr2( order, uplo, N, α, x, sx, y, sy, A, LDA )`][@stdlib/blas/base/dsyr2]: perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`.
- [`dtrmv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/dtrmv]: perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`.
- [`sgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/sgemv]: perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`.
- [`sspmv( order, uplo, N, α, AP, x, sx, β, y, sy )`][@stdlib/blas/base/sspmv]: perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors and, `A` is an `N` by `N` symmetric matrix supplied in packed form.
- [`ssymv( order, uplo, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/ssymv]: perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.
- [`ssyr( order, uplo, N, α, x, sx, A, LDA )`][@stdlib/blas/base/ssyr]: perform the symmetric rank 1 operation `A = α*x*x**T + A`.
- [`ssyr2( order, uplo, N, α, x, sx, y, sy, A, LDA )`][@stdlib/blas/base/ssyr2]: perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`.
- [`strmv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/strmv]: perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`.### BLAS Level 3
### Scalar Operations
- [`dcabs1( z )`][@stdlib/blas/base/dcabs1]: compute the sum of the absolute values of the real part and imaginary components of a double-precision complex floating-point number.
- [`scabs1( z )`][@stdlib/blas/base/scabs1]: compute the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point number.### Auxiliary BLAS
### Utilities
- [`assert`][@stdlib/blas/base/assert]: base BLAS assertion utilities.
- [`diagonalTypeEnum2Str( value )`][@stdlib/blas/base/diagonal-type-enum2str]: return the BLAS diagonal type string associated with a BLAS diagonal type enumeration constant.
- [`diagonalTypeResolveEnum( value )`][@stdlib/blas/base/diagonal-type-resolve-enum]: return the enumeration constant associated with a supported BLAS diagonal type value.
- [`diagonalTypeResolveStr( value )`][@stdlib/blas/base/diagonal-type-resolve-str]: return the diagonal type string associated with a supported BLAS diagonal type value.
- [`diagonalTypeStr2Enum( diagonal )`][@stdlib/blas/base/diagonal-type-str2enum]: return the enumeration constant associated with a BLAS diagonal type.
- [`diagonalTypes()`][@stdlib/blas/base/diagonal-types]: BLAS diagonal element types.
- [`layoutEnum2Str( layout )`][@stdlib/blas/base/layout-enum2str]: return the BLAS memory layout string associated with a BLAS memory layout enumeration constant.
- [`layoutResolveEnum( layout )`][@stdlib/blas/base/layout-resolve-enum]: return the enumeration constant associated with a supported BLAS memory layout value.
- [`layoutResolveStr( layout )`][@stdlib/blas/base/layout-resolve-str]: return the layout string associated with a supported BLAS memory layout value.
- [`layoutStr2Enum( layout )`][@stdlib/blas/base/layout-str2enum]: return the enumeration constant associated with a BLAS memory layout string.
- [`layouts()`][@stdlib/blas/base/layouts]: BLAS memory layouts.
- [`matrixTriangleEnum2Str( value )`][@stdlib/blas/base/matrix-triangle-enum2str]: return the BLAS matrix triangle string associated with a BLAS matrix triangle enumeration constant.
- [`matrixTriangleResolveEnum( value )`][@stdlib/blas/base/matrix-triangle-resolve-enum]: return the enumeration constant associated with a supported BLAS matrix triangle value.
- [`matrixTriangleResolveStr( value )`][@stdlib/blas/base/matrix-triangle-resolve-str]: return the matrix triangle string associated with a supported BLAS matrix triangle value.
- [`matrixTriangleStr2Enum( operation )`][@stdlib/blas/base/matrix-triangle-str2enum]: return the enumeration constant associated with a BLAS matrix triangle.
- [`matrixTriangles()`][@stdlib/blas/base/matrix-triangles]: BLAS matrix triangles.
- [`operationSideEnum2Str( operation )`][@stdlib/blas/base/operation-side-enum2str]: return the BLAS operation side string associated with a BLAS operation side enumeration constant.
- [`operationSideResolveEnum( operation )`][@stdlib/blas/base/operation-side-resolve-enum]: return the enumeration constant associated with a supported BLAS operation side value.
- [`operationSideResolveStr( operation )`][@stdlib/blas/base/operation-side-resolve-str]: return the operation side string associated with a supported BLAS operation side value.
- [`operationSideStr2Enum( operation )`][@stdlib/blas/base/operation-side-str2enum]: return the enumeration constant associated with a BLAS operation side.
- [`operationSides()`][@stdlib/blas/base/operation-sides]: BLAS operation sides.
- [`transposeOperationEnum2Str( operation )`][@stdlib/blas/base/transpose-operation-enum2str]: return the BLAS transpose operation string associated with a BLAS transpose operation enumeration constant.
- [`transposeOperationResolveEnum( operation )`][@stdlib/blas/base/transpose-operation-resolve-enum]: return the enumeration constant associated with a supported BLAS transpose operation value.
- [`transposeOperationResolveStr( operation )`][@stdlib/blas/base/transpose-operation-resolve-str]: return the transpose operation string associated with a supported BLAS transpose operation value.
- [`transposeOperationStr2Enum( operation )`][@stdlib/blas/base/transpose-operation-str2enum]: return the enumeration constant associated with a BLAS transpose operation.
- [`transposeOperations()`][@stdlib/blas/base/transpose-operations]: BLAS transpose operations.## Examples
```javascript
var objectKeys = require( '@stdlib/utils-keys' );
var blas = require( '@stdlib/blas-base' );console.log( objectKeys( blas ) );
```* * *
## Notice
This package is part of [stdlib][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][stdlib], see the main project [repository][stdlib].
#### Community
[![Chat][chat-image]][chat-url]
---
## License
See [LICENSE][stdlib-license].
## Copyright
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/blas-base.svg
[npm-url]: https://npmjs.org/package/@stdlib/blas-base[test-image]: https://github.com/stdlib-js/blas-base/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/blas-base/actions/workflows/test.yml?query=branch:main[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/blas-base/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/blas-base?branch=main[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im[stdlib]: https://github.com/stdlib-js/stdlib
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
[umd]: https://github.com/umdjs/umd
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules[deno-url]: https://github.com/stdlib-js/blas-base/tree/deno
[deno-readme]: https://github.com/stdlib-js/blas-base/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/blas-base/tree/umd
[umd-readme]: https://github.com/stdlib-js/blas-base/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/blas-base/tree/esm
[esm-readme]: https://github.com/stdlib-js/blas-base/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/blas-base/blob/main/branches.md[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/blas-base/main/LICENSE
[@stdlib/blas/base/assert]: https://github.com/stdlib-js/blas-base-assert
[@stdlib/blas/base/diagonal-type-enum2str]: https://github.com/stdlib-js/blas-base-diagonal-type-enum2str
[@stdlib/blas/base/diagonal-type-resolve-enum]: https://github.com/stdlib-js/blas-base-diagonal-type-resolve-enum
[@stdlib/blas/base/diagonal-type-resolve-str]: https://github.com/stdlib-js/blas-base-diagonal-type-resolve-str
[@stdlib/blas/base/diagonal-type-str2enum]: https://github.com/stdlib-js/blas-base-diagonal-type-str2enum
[@stdlib/blas/base/diagonal-types]: https://github.com/stdlib-js/blas-base-diagonal-types
[@stdlib/blas/base/layout-enum2str]: https://github.com/stdlib-js/blas-base-layout-enum2str
[@stdlib/blas/base/layout-resolve-enum]: https://github.com/stdlib-js/blas-base-layout-resolve-enum
[@stdlib/blas/base/layout-resolve-str]: https://github.com/stdlib-js/blas-base-layout-resolve-str
[@stdlib/blas/base/layout-str2enum]: https://github.com/stdlib-js/blas-base-layout-str2enum
[@stdlib/blas/base/layouts]: https://github.com/stdlib-js/blas-base-layouts
[@stdlib/blas/base/matrix-triangle-enum2str]: https://github.com/stdlib-js/blas-base-matrix-triangle-enum2str
[@stdlib/blas/base/matrix-triangle-resolve-enum]: https://github.com/stdlib-js/blas-base-matrix-triangle-resolve-enum
[@stdlib/blas/base/matrix-triangle-resolve-str]: https://github.com/stdlib-js/blas-base-matrix-triangle-resolve-str
[@stdlib/blas/base/matrix-triangle-str2enum]: https://github.com/stdlib-js/blas-base-matrix-triangle-str2enum
[@stdlib/blas/base/matrix-triangles]: https://github.com/stdlib-js/blas-base-matrix-triangles
[@stdlib/blas/base/operation-side-enum2str]: https://github.com/stdlib-js/blas-base-operation-side-enum2str
[@stdlib/blas/base/operation-side-resolve-enum]: https://github.com/stdlib-js/blas-base-operation-side-resolve-enum
[@stdlib/blas/base/operation-side-resolve-str]: https://github.com/stdlib-js/blas-base-operation-side-resolve-str
[@stdlib/blas/base/operation-side-str2enum]: https://github.com/stdlib-js/blas-base-operation-side-str2enum
[@stdlib/blas/base/operation-sides]: https://github.com/stdlib-js/blas-base-operation-sides
[@stdlib/blas/base/transpose-operation-enum2str]: https://github.com/stdlib-js/blas-base-transpose-operation-enum2str
[@stdlib/blas/base/transpose-operation-resolve-enum]: https://github.com/stdlib-js/blas-base-transpose-operation-resolve-enum
[@stdlib/blas/base/transpose-operation-resolve-str]: https://github.com/stdlib-js/blas-base-transpose-operation-resolve-str
[@stdlib/blas/base/transpose-operation-str2enum]: https://github.com/stdlib-js/blas-base-transpose-operation-str2enum
[@stdlib/blas/base/transpose-operations]: https://github.com/stdlib-js/blas-base-transpose-operations
[@stdlib/blas/base/dcabs1]: https://github.com/stdlib-js/blas-base-dcabs1
[@stdlib/blas/base/scabs1]: https://github.com/stdlib-js/blas-base-scabs1
[@stdlib/blas/base/dspmv]: https://github.com/stdlib-js/blas-base-dspmv
[@stdlib/blas/base/dsymv]: https://github.com/stdlib-js/blas-base-dsymv
[@stdlib/blas/base/dsyr]: https://github.com/stdlib-js/blas-base-dsyr
[@stdlib/blas/base/dsyr2]: https://github.com/stdlib-js/blas-base-dsyr2
[@stdlib/blas/base/dtrmv]: https://github.com/stdlib-js/blas-base-dtrmv
[@stdlib/blas/base/sgemv]: https://github.com/stdlib-js/blas-base-sgemv
[@stdlib/blas/base/sspmv]: https://github.com/stdlib-js/blas-base-sspmv
[@stdlib/blas/base/ssymv]: https://github.com/stdlib-js/blas-base-ssymv
[@stdlib/blas/base/ssyr]: https://github.com/stdlib-js/blas-base-ssyr
[@stdlib/blas/base/ssyr2]: https://github.com/stdlib-js/blas-base-ssyr2
[@stdlib/blas/base/strmv]: https://github.com/stdlib-js/blas-base-strmv
[@stdlib/blas/base/caxpy]: https://github.com/stdlib-js/blas-base-caxpy
[@stdlib/blas/base/ccopy]: https://github.com/stdlib-js/blas-base-ccopy
[@stdlib/blas/base/cscal]: https://github.com/stdlib-js/blas-base-cscal
[@stdlib/blas/base/csrot]: https://github.com/stdlib-js/blas-base-csrot
[@stdlib/blas/base/cswap]: https://github.com/stdlib-js/blas-base-cswap
[@stdlib/blas/base/dasum]: https://github.com/stdlib-js/blas-base-dasum
[@stdlib/blas/base/daxpy]: https://github.com/stdlib-js/blas-base-daxpy
[@stdlib/blas/base/dcopy]: https://github.com/stdlib-js/blas-base-dcopy
[@stdlib/blas/base/ddot]: https://github.com/stdlib-js/blas-base-ddot
[@stdlib/blas/base/dnrm2]: https://github.com/stdlib-js/blas-base-dnrm2
[@stdlib/blas/base/drot]: https://github.com/stdlib-js/blas-base-drot
[@stdlib/blas/base/drotg]: https://github.com/stdlib-js/blas-base-drotg
[@stdlib/blas/base/drotm]: https://github.com/stdlib-js/blas-base-drotm
[@stdlib/blas/base/dscal]: https://github.com/stdlib-js/blas-base-dscal
[@stdlib/blas/base/dsdot]: https://github.com/stdlib-js/blas-base-dsdot
[@stdlib/blas/base/dswap]: https://github.com/stdlib-js/blas-base-dswap
[@stdlib/blas/base/dznrm2]: https://github.com/stdlib-js/blas-base-dznrm2
[@stdlib/blas/base/gasum]: https://github.com/stdlib-js/blas-base-gasum
[@stdlib/blas/base/gaxpy]: https://github.com/stdlib-js/blas-base-gaxpy
[@stdlib/blas/base/gcopy]: https://github.com/stdlib-js/blas-base-gcopy
[@stdlib/blas/base/gdot]: https://github.com/stdlib-js/blas-base-gdot
[@stdlib/blas/base/gnrm2]: https://github.com/stdlib-js/blas-base-gnrm2
[@stdlib/blas/base/gscal]: https://github.com/stdlib-js/blas-base-gscal
[@stdlib/blas/base/gswap]: https://github.com/stdlib-js/blas-base-gswap
[@stdlib/blas/base/idamax]: https://github.com/stdlib-js/blas-base-idamax
[@stdlib/blas/base/isamax]: https://github.com/stdlib-js/blas-base-isamax
[@stdlib/blas/base/sasum]: https://github.com/stdlib-js/blas-base-sasum
[@stdlib/blas/base/saxpy]: https://github.com/stdlib-js/blas-base-saxpy
[@stdlib/blas/base/scasum]: https://github.com/stdlib-js/blas-base-scasum
[@stdlib/blas/base/scnrm2]: https://github.com/stdlib-js/blas-base-scnrm2
[@stdlib/blas/base/scopy]: https://github.com/stdlib-js/blas-base-scopy
[@stdlib/blas/base/sdot]: https://github.com/stdlib-js/blas-base-sdot
[@stdlib/blas/base/sdsdot]: https://github.com/stdlib-js/blas-base-sdsdot
[@stdlib/blas/base/snrm2]: https://github.com/stdlib-js/blas-base-snrm2
[@stdlib/blas/base/srot]: https://github.com/stdlib-js/blas-base-srot
[@stdlib/blas/base/srotg]: https://github.com/stdlib-js/blas-base-srotg
[@stdlib/blas/base/srotm]: https://github.com/stdlib-js/blas-base-srotm
[@stdlib/blas/base/sscal]: https://github.com/stdlib-js/blas-base-sscal
[@stdlib/blas/base/sswap]: https://github.com/stdlib-js/blas-base-sswap
[@stdlib/blas/base/zaxpy]: https://github.com/stdlib-js/blas-base-zaxpy
[@stdlib/blas/base/zcopy]: https://github.com/stdlib-js/blas-base-zcopy
[@stdlib/blas/base/zdrot]: https://github.com/stdlib-js/blas-base-zdrot
[@stdlib/blas/base/zscal]: https://github.com/stdlib-js/blas-base-zscal
[@stdlib/blas/base/zswap]: https://github.com/stdlib-js/blas-base-zswap