@stdlib/blas-ext-base

Standard library extended basic linear algebra subroutines (BLAS).

https://github.com/stdlib-js/blas-ext-base

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.9%) to scientific vocabulary

Keywords

algebra array base basic blas javascript lib library linear math mathematics ndarray node node-js nodejs routines standard stdlib subprograms vector
Last synced: 4 months ago · JSON representation ·

Repository

Standard library extended basic linear algebra subroutines (BLAS).

Basic Info
Statistics
  • Stars: 2
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
algebra array base basic blas javascript lib library linear math mathematics ndarray node node-js nodejs routines standard stdlib subprograms vector
Created over 4 years ago · Last pushed 8 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security Notice

README.md

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!

Extended BLAS

NPM version Build Status Coverage Status <!-- dependencies -->

Base (i.e., lower-level) extensions to basic linear algebra subprograms (BLAS).

## Installation ```bash npm install @stdlib/blas-ext-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 ns = require( '@stdlib/blas-ext-base' ); ``` #### ns Namespace for "base" (i.e., lower-level) extensions to basic linear algebra subprograms (BLAS). ```javascript var o = ns; // returns {...} ```
- [`cfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/cfill]: fill a single-precision complex floating-point strided array with a specified scalar constant. - [`csum( N, x, strideX )`][@stdlib/blas/ext/base/csum]: calculate the sum of single-precision complex floating-point strided array elements. - [`csumkbn( N, x, strideX )`][@stdlib/blas/ext/base/csumkbn]: calculate the sum of single-precision complex floating-point strided array elements using an improved Kahan–Babuška algorithm. - [`dapx( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapx]: add a scalar constant to each element in a double-precision floating-point strided array. - [`dapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsum]: add a scalar constant to each double-precision floating-point strided array element and compute the sum. - [`dapxsumkbn( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsumkbn]: add a scalar constant to each double-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm. - [`dapxsumkbn2( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsumkbn2]: add a scalar constant to each double-precision floating-point strided array element and compute the sum using a second-order iterative Kahan–Babuška algorithm. - [`dapxsumors( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsumors]: add a scalar constant to each double-precision floating-point strided array element and compute the sum using ordinary recursive summation. - [`dapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsumpw]: add a scalar constant to each double-precision floating-point strided array element and compute the sum using pairwise summation. - [`dasumpw( N, x, strideX )`][@stdlib/blas/ext/base/dasumpw]: calculate the sum of absolute values (_L1_ norm) of double-precision floating-point strided array elements using pairwise summation. - [`dcusum( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dcusum]: calculate the cumulative sum of double-precision floating-point strided array elements. - [`dcusumkbn( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dcusumkbn]: calculate the cumulative sum of double-precision floating-point strided array elements using an improved Kahan–Babuška algorithm. - [`dcusumkbn2( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dcusumkbn2]: calculate the cumulative sum of double-precision floating-point strided array elements using a second-order iterative Kahan–Babuška algorithm. - [`dcusumors( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dcusumors]: calculate the cumulative sum of double-precision floating-point strided array elements using ordinary recursive summation. - [`dcusumpw( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dcusumpw]: calculate the cumulative sum of double-precision floating-point strided array elements using pairwise summation. - [`dfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill]: fill a double-precision floating-point strided array with a specified scalar constant. - [`dnanasum( N, x, strideX )`][@stdlib/blas/ext/base/dnanasum]: calculate the sum of absolute values (_L1_ norm) of double-precision floating-point strided array elements, ignoring `NaN` values. - [`dnanasumors( N, x, strideX )`][@stdlib/blas/ext/base/dnanasumors]: calculate the sum of absolute values (_L1_ norm) of double-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation. - [`dnannsum( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/dnannsum]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values. - [`dnannsumkbn( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/dnannsumkbn]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm. - [`dnannsumkbn2( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/dnannsumkbn2]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using a second-order iterative Kahan–Babuška algorithm. - [`dnannsumors( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/dnannsumors]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation. - [`dnannsumpw( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/dnannsumpw]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation. - [`dnansum( N, x, strideX )`][@stdlib/blas/ext/base/dnansum]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values. - [`dnansumkbn( N, x, strideX )`][@stdlib/blas/ext/base/dnansumkbn]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm. - [`dnansumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/dnansumkbn2]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using a second-order iterative Kahan–Babuška algorithm. - [`dnansumors( N, x, strideX )`][@stdlib/blas/ext/base/dnansumors]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation. - [`dnansumpw( N, x, strideX )`][@stdlib/blas/ext/base/dnansumpw]: calculate the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation. - [`drev( N, x, strideX )`][@stdlib/blas/ext/base/drev]: reverse a double-precision floating-point strided array in-place. - [`dsapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dsapxsum]: add a scalar constant to each single-precision floating-point strided array element, and compute the sum using extended accumulation and returning an extended precision result. - [`dsapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dsapxsumpw]: add a constant to each single-precision floating-point strided array element, and compute the sum using pairwise summation with extended accumulation and returning an extended precision result. - [`dsnannsumors( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/dsnannsumors]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using ordinary recursive summation with extended accumulation, and returning an extended precision result. - [`dsnansum( N, x, strideX )`][@stdlib/blas/ext/base/dsnansum]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using extended accumulation, and returning an extended precision result. - [`dsnansumors( N, x, strideX )`][@stdlib/blas/ext/base/dsnansumors]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using ordinary recursive summation with extended accumulation, and returning an extended precision result. - [`dsnansumpw( N, x, strideX )`][@stdlib/blas/ext/base/dsnansumpw]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using pairwise summation with extended accumulation, and returning an extended precision result. - [`dsort2hp( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dsort2hp]: simultaneously sort two double-precision floating-point strided arrays based on the sort order of the first array using heapsort. - [`dsort2ins( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dsort2ins]: simultaneously sort two double-precision floating-point strided arrays based on the sort order of the first array using insertion sort. - [`dsort2sh( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dsort2sh]: simultaneously sort two double-precision floating-point strided arrays based on the sort order of the first array using Shellsort. - [`dsorthp( N, order, x, strideX )`][@stdlib/blas/ext/base/dsorthp]: sort a double-precision floating-point strided array using heapsort. - [`dsortins( N, order, x, strideX )`][@stdlib/blas/ext/base/dsortins]: sort a double-precision floating-point strided array using insertion sort. - [`dsortsh( N, order, x, stride )`][@stdlib/blas/ext/base/dsortsh]: sort a double-precision floating-point strided array using Shellsort. - [`dssum( N, x, strideX )`][@stdlib/blas/ext/base/dssum]: calculate the sum of single-precision floating-point strided array elements using extended accumulation and returning an extended precision result. - [`dssumors( N, x, strideX )`][@stdlib/blas/ext/base/dssumors]: calculate the sum of single-precision floating-point strided array elements using ordinary recursive summation with extended accumulation and returning an extended precision result. - [`dssumpw( N, x, strideX )`][@stdlib/blas/ext/base/dssumpw]: calculate the sum of single-precision floating-point strided array elements using pairwise summation with extended accumulation and returning an extended precision result. - [`dsum( N, x, strideX )`][@stdlib/blas/ext/base/dsum]: calculate the sum of double-precision floating-point strided array elements. - [`dsumkbn( N, x, strideX )`][@stdlib/blas/ext/base/dsumkbn]: calculate the sum of double-precision floating-point strided array elements using an improved Kahan–Babuška algorithm. - [`dsumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/dsumkbn2]: calculate the sum of double-precision floating-point strided array elements using a second-order iterative Kahan–Babuška algorithm. - [`dsumors( N, x, strideX )`][@stdlib/blas/ext/base/dsumors]: calculate the sum of double-precision floating-point strided array elements using ordinary recursive summation. - [`dsumpw( N, x, strideX )`][@stdlib/blas/ext/base/dsumpw]: calculate the sum of double-precision floating-point strided array elements using pairwise summation. - [`gapx( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapx]: add a scalar constant to each element in a strided array. - [`gapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsum]: add a scalar constant to each strided array element and compute the sum. - [`gapxsumkbn( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumkbn]: add a scalar constant to each strided array element and compute the sum using an improved Kahan–Babuška algorithm. - [`gapxsumkbn2( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumkbn2]: add a scalar constant to each strided array element and compute the sum using a second-order iterative Kahan–Babuška algorithm. - [`gapxsumors( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumors]: add a scalar constant to each strided array element and compute the sum using ordinary recursive summation. - [`gapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumpw]: add a scalar constant to each strided array element and compute the sum using pairwise summation. - [`gasumpw( N, x, strideX )`][@stdlib/blas/ext/base/gasumpw]: calculate the sum of absolute values (_L1_ norm) of strided array elements using pairwise summation. - [`gcusum( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusum]: calculate the cumulative sum of strided array elements. - [`gcusumkbn( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusumkbn]: calculate the cumulative sum of strided array elements using an improved Kahan–Babuška algorithm. - [`gcusumkbn2( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusumkbn2]: calculate the cumulative sum of strided array elements using a second-order iterative Kahan–Babuška algorithm. - [`gcusumors( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusumors]: calculate the cumulative sum of strided array elements using ordinary recursive summation. - [`gcusumpw( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusumpw]: calculate the cumulative sum of strided array elements using pairwise summation. - [`gfillBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/blas/ext/base/gfill-by]: fill a strided array according to a provided callback function. - [`gfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gfill]: fill a strided array with a specified scalar constant. - [`gnannsumkbn( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/gnannsumkbn]: calculate the sum of strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm. - [`gnannsumpw( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/gnannsumpw]: calculate the sum of strided array elements, ignoring `NaN` values and using pairwise summation. - [`gnansum( N, x, strideX )`][@stdlib/blas/ext/base/gnansum]: calculate the sum of strided array elements, ignoring `NaN` values. - [`gnansumkbn( N, x, strideX )`][@stdlib/blas/ext/base/gnansumkbn]: calculate the sum of strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm. - [`gnansumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/gnansumkbn2]: calculate the sum of strided array elements, ignoring `NaN` values and using a second-order iterative Kahan–Babuška algorithm. - [`gnansumors( N, x, strideX )`][@stdlib/blas/ext/base/gnansumors]: calculate the sum of strided array elements, ignoring `NaN` values and using ordinary recursive summation. - [`gnansumpw( N, x, strideX )`][@stdlib/blas/ext/base/gnansumpw]: calculate the sum of strided array elements, ignoring `NaN` values and using pairwise summation. - [`grev( N, x, strideX )`][@stdlib/blas/ext/base/grev]: reverse a strided array in-place. - [`gsort2hp( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gsort2hp]: simultaneously sort two strided arrays based on the sort order of the first array using heapsort. - [`gsort2ins( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gsort2ins]: simultaneously sort two strided arrays based on the sort order of the first array using insertion sort. - [`gsort2sh( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gsort2sh]: simultaneously sort two strided arrays based on the sort order of the first array using Shellsort. - [`gsorthp( N, order, x, strideX )`][@stdlib/blas/ext/base/gsorthp]: sort a strided array using heapsort. - [`gsortins( N, order, x, strideX )`][@stdlib/blas/ext/base/gsortins]: sort a strided array using insertion sort. - [`gsortsh( N, order, x, strideX )`][@stdlib/blas/ext/base/gsortsh]: sort a strided array using Shellsort. - [`gsum( N, x, strideX )`][@stdlib/blas/ext/base/gsum]: calculate the sum of strided array elements. - [`gsumkbn( N, x, strideX )`][@stdlib/blas/ext/base/gsumkbn]: calculate the sum of strided array elements using an improved Kahan–Babuška algorithm. - [`gsumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/gsumkbn2]: calculate the sum of strided array elements using a second-order iterative Kahan–Babuška algorithm. - [`gsumors( N, x, strideX )`][@stdlib/blas/ext/base/gsumors]: calculate the sum of strided array elements using ordinary recursive summation. - [`gsumpw( N, x, strideX )`][@stdlib/blas/ext/base/gsumpw]: calculate the sum of strided array elements using pairwise summation. - [`ndarray`][@stdlib/blas/ext/base/ndarray]: base ndarray extended BLAS functions. - [`sapx( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapx]: add a scalar constant to each element in a single-precision floating-point strided array. - [`sapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsum]: add a scalar constant to each single-precision floating-point strided array element and compute the sum. - [`sapxsumkbn( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumkbn]: add a scalar constant to each single-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm. - [`sapxsumkbn2( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumkbn2]: add a scalar constant to each single-precision floating-point strided array element and compute the sum using a second-order iterative Kahan–Babuška algorithm. - [`sapxsumors( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumors]: add a scalar constant to each single-precision floating-point strided array element and compute the sum using ordinary recursive summation. - [`sapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumpw]: add a scalar constant to each single-precision floating-point strided array element and compute the sum using pairwise summation. - [`sasumpw( N, x, strideX )`][@stdlib/blas/ext/base/sasumpw]: calculate the sum of absolute values (_L1_ norm) of single-precision floating-point strided array elements using pairwise summation. - [`scusum( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/scusum]: calculate the cumulative sum of single-precision floating-point strided array elements. - [`scusumkbn( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/scusumkbn]: calculate the cumulative sum of single-precision floating-point strided array elements using an improved Kahan–Babuška algorithm. - [`scusumkbn2( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/scusumkbn2]: calculate the cumulative sum of single-precision floating-point strided array elements using a second-order iterative Kahan–Babuška algorithm. - [`scusumors( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/scusumors]: calculate the cumulative sum of single-precision floating-point strided array elements using ordinary recursive summation. - [`scusumpw( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/scusumpw]: calculate the cumulative sum of single-precision floating-point strided array elements using pairwise summation. - [`sdsapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sdsapxsum]: add a scalar constant to each single-precision floating-point strided array element and compute the sum using extended accumulation. - [`sdsapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sdsapxsumpw]: add a scalar constant to each single-precision floating-point strided array element and compute the sum using pairwise summation with extended accumulation. - [`sdsnansum( N, x, strideX )`][@stdlib/blas/ext/base/sdsnansum]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using extended accumulation. - [`sdsnansumpw( N, x, strideX )`][@stdlib/blas/ext/base/sdsnansumpw]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation with extended accumulation. - [`sdssum( N, x, strideX )`][@stdlib/blas/ext/base/sdssum]: calculate the sum of single-precision floating-point strided array elements using extended accumulation. - [`sdssumpw( N, x, strideX )`][@stdlib/blas/ext/base/sdssumpw]: calculate the sum of single-precision floating-point strided array elements using pairwise summation with extended accumulation. - [`sfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill]: fill a single-precision floating-point strided array with a specified scalar constant. - [`snansum( N, x, strideX )`][@stdlib/blas/ext/base/snansum]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values. - [`snansumkbn( N, x, strideX )`][@stdlib/blas/ext/base/snansumkbn]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm. - [`snansumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/snansumkbn2]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using a second-order iterative Kahan–Babuška algorithm. - [`snansumors( N, x, strideX )`][@stdlib/blas/ext/base/snansumors]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation. - [`snansumpw( N, x, strideX )`][@stdlib/blas/ext/base/snansumpw]: calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation. - [`srev( N, x, strideX )`][@stdlib/blas/ext/base/srev]: reverse a single-precision floating-point strided array in-place. - [`ssort2hp( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/ssort2hp]: simultaneously sort two single-precision floating-point strided arrays based on the sort order of the first array using heapsort. - [`ssort2ins( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/ssort2ins]: simultaneously sort two single-precision floating-point strided arrays based on the sort order of the first array using insertion sort. - [`ssort2sh( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/ssort2sh]: simultaneously sort two single-precision floating-point strided arrays based on the sort order of the first array using Shellsort. - [`ssorthp( N, order, x, stride )`][@stdlib/blas/ext/base/ssorthp]: sort a single-precision floating-point strided array using heapsort. - [`ssortins( N, order, x, stride )`][@stdlib/blas/ext/base/ssortins]: sort a single-precision floating-point strided array using insertion sort. - [`ssortsh( N, order, x, stride )`][@stdlib/blas/ext/base/ssortsh]: sort a single-precision floating-point strided array using Shellsort. - [`ssum( N, x, strideX )`][@stdlib/blas/ext/base/ssum]: calculate the sum of single-precision floating-point strided array elements. - [`ssumkbn( N, x, strideX )`][@stdlib/blas/ext/base/ssumkbn]: calculate the sum of single-precision floating-point strided array elements using an improved Kahan–Babuška algorithm. - [`ssumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/ssumkbn2]: calculate the sum of single-precision floating-point strided array elements using a second-order iterative Kahan–Babuška algorithm. - [`ssumors( N, x, strideX )`][@stdlib/blas/ext/base/ssumors]: calculate the sum of single-precision floating-point strided array elements using ordinary recursive summation. - [`ssumpw( N, x, strideX )`][@stdlib/blas/ext/base/ssumpw]: calculate the sum of single-precision floating-point strided array elements using pairwise summation. - [`wasm`][@stdlib/blas/ext/base/wasm]: extensions to basic linear algebra subprograms (BLAS) compiled to WebAssembly. - [`zfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/zfill]: fill a double-precision complex floating-point strided array with a specified scalar constant. - [`zsum( N, x, strideX )`][@stdlib/blas/ext/base/zsum]: calculate the sum of double-precision complex floating-point strided array elements. - [`zsumkbn( N, x, strideX )`][@stdlib/blas/ext/base/zsumkbn]: calculate the sum of double-precision complex floating-point strided array elements using an improved Kahan–Babuška algorithm.
## Examples ```javascript var objectKeys = require( '@stdlib/utils-keys' ); var ns = require( '@stdlib/blas-ext-base' ); console.log( objectKeys( ns ) ); ```
* * * ## 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-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Push event: 220
Last Year
  • Push event: 220

Committers

Last synced: almost 2 years ago

All Time
  • Total Commits: 46
  • Total Committers: 1
  • Avg Commits per committer: 46.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 12
  • Committers: 1
  • Avg Commits per committer: 12.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
stdlib-bot n****y@s****o 46
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 10 last-month
  • Total dependent packages: 2
  • Total dependent repositories: 1
  • Total versions: 12
  • Total maintainers: 4
npmjs.org: @stdlib/blas-ext-base

Extended base (i.e., lower-level) basic linear algebra subroutines (BLAS).

  • Homepage: https://stdlib.io
  • License: Apache-2.0
  • Latest release: 0.2.1
    published almost 2 years ago
  • Versions: 12
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 10 Last month
Rankings
Dependent packages count: 8.9%
Dependent repos count: 10.4%
Average: 14.9%
Forks count: 15.5%
Stargazers count: 16.8%
Downloads: 22.9%
Funding
  • type: opencollective
  • url: https://opencollective.com/stdlib
Last synced: 4 months ago

Dependencies

package.json npm
  • @stdlib/array-base-arraylike2object ^0.0.x development
  • @stdlib/array-base-filled-by ^0.0.x development
  • @stdlib/array-complex128 ^0.0.x development
  • @stdlib/array-float32 ^0.0.x development
  • @stdlib/array-float64 ^0.0.x development
  • @stdlib/assert-is-browser ^0.0.x development
  • @stdlib/bench ^0.0.x development
  • @stdlib/blas-base-dcopy ^0.0.x development
  • @stdlib/blas-base-scopy ^0.0.x development
  • @stdlib/complex-float64 ^0.0.x development
  • @stdlib/math-base-assert-is-nan ^0.0.x development
  • @stdlib/math-base-assert-is-nanf ^0.0.x development
  • @stdlib/math-base-assert-is-negative-zero ^0.0.x development
  • @stdlib/math-base-assert-is-negative-zerof ^0.0.x development
  • @stdlib/math-base-assert-is-positive-zero ^0.0.x development
  • @stdlib/math-base-assert-is-positive-zerof ^0.0.x development
  • @stdlib/math-base-special-abs ^0.0.x development
  • @stdlib/math-base-special-floor ^0.0.x development
  • @stdlib/math-base-special-pow ^0.0.x development
  • @stdlib/math-base-special-round ^0.0.x development
  • @stdlib/math-base-special-sqrt ^0.0.x development
  • @stdlib/number-float64-base-to-float32 ^0.0.x development
  • @stdlib/random-base-discrete-uniform ^0.0.x development
  • @stdlib/random-base-randu ^0.0.x development
  • @stdlib/random-base-uniform ^0.0.x development
  • @stdlib/strided-base-reinterpret-complex128 ^0.0.x development
  • @stdlib/utils-define-nonenumerable-read-only-property ^0.0.x development
  • @stdlib/utils-keys ^0.0.x development
  • @stdlib/utils-try-require ^0.0.x development
  • istanbul ^0.4.1 development
  • proxyquire ^2.0.0 development
  • tap-spec 5.x.x development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/blas-ext-base-dapx ^0.0.x
  • @stdlib/blas-ext-base-dapxsum ^0.0.x
  • @stdlib/blas-ext-base-dapxsumkbn ^0.0.x
  • @stdlib/blas-ext-base-dapxsumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-dapxsumors ^0.0.x
  • @stdlib/blas-ext-base-dapxsumpw ^0.0.x
  • @stdlib/blas-ext-base-dasumpw ^0.0.x
  • @stdlib/blas-ext-base-dcusum ^0.0.x
  • @stdlib/blas-ext-base-dcusumkbn ^0.0.x
  • @stdlib/blas-ext-base-dcusumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-dcusumors ^0.0.x
  • @stdlib/blas-ext-base-dcusumpw ^0.0.x
  • @stdlib/blas-ext-base-dfill ^0.0.x
  • @stdlib/blas-ext-base-dnanasum ^0.0.x
  • @stdlib/blas-ext-base-dnanasumors ^0.0.x
  • @stdlib/blas-ext-base-dnannsum ^0.0.x
  • @stdlib/blas-ext-base-dnannsumkbn ^0.0.x
  • @stdlib/blas-ext-base-dnannsumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-dnannsumors ^0.0.x
  • @stdlib/blas-ext-base-dnannsumpw ^0.0.x
  • @stdlib/blas-ext-base-dnansum ^0.0.x
  • @stdlib/blas-ext-base-dnansumkbn ^0.0.x
  • @stdlib/blas-ext-base-dnansumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-dnansumors ^0.0.x
  • @stdlib/blas-ext-base-dnansumpw ^0.0.x
  • @stdlib/blas-ext-base-drev ^0.0.x
  • @stdlib/blas-ext-base-dsapxsum ^0.0.x
  • @stdlib/blas-ext-base-dsapxsumpw ^0.0.x
  • @stdlib/blas-ext-base-dsnannsumors ^0.0.x
  • @stdlib/blas-ext-base-dsnansum ^0.0.x
  • @stdlib/blas-ext-base-dsnansumors ^0.0.x
  • @stdlib/blas-ext-base-dsnansumpw ^0.0.x
  • @stdlib/blas-ext-base-dsort2hp ^0.0.x
  • @stdlib/blas-ext-base-dsort2ins ^0.0.x
  • @stdlib/blas-ext-base-dsort2sh ^0.0.x
  • @stdlib/blas-ext-base-dsorthp ^0.0.x
  • @stdlib/blas-ext-base-dsortins ^0.0.x
  • @stdlib/blas-ext-base-dsortsh ^0.0.x
  • @stdlib/blas-ext-base-dssum ^0.0.x
  • @stdlib/blas-ext-base-dssumors ^0.0.x
  • @stdlib/blas-ext-base-dssumpw ^0.0.x
  • @stdlib/blas-ext-base-dsum ^0.0.x
  • @stdlib/blas-ext-base-dsumkbn ^0.0.x
  • @stdlib/blas-ext-base-dsumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-dsumors ^0.0.x
  • @stdlib/blas-ext-base-dsumpw ^0.0.x
  • @stdlib/blas-ext-base-gapx ^0.0.x
  • @stdlib/blas-ext-base-gapxsum ^0.0.x
  • @stdlib/blas-ext-base-gapxsumkbn ^0.0.x
  • @stdlib/blas-ext-base-gapxsumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-gapxsumors ^0.0.x
  • @stdlib/blas-ext-base-gapxsumpw ^0.0.x
  • @stdlib/blas-ext-base-gasumpw ^0.0.x
  • @stdlib/blas-ext-base-gcusum ^0.0.x
  • @stdlib/blas-ext-base-gcusumkbn ^0.0.x
  • @stdlib/blas-ext-base-gcusumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-gcusumors ^0.0.x
  • @stdlib/blas-ext-base-gcusumpw ^0.0.x
  • @stdlib/blas-ext-base-gfill ^0.0.x
  • @stdlib/blas-ext-base-gfill-by ^0.0.x
  • @stdlib/blas-ext-base-gnannsumkbn ^0.0.x
  • @stdlib/blas-ext-base-gnansum ^0.0.x
  • @stdlib/blas-ext-base-gnansumkbn ^0.0.x
  • @stdlib/blas-ext-base-gnansumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-gnansumors ^0.0.x
  • @stdlib/blas-ext-base-gnansumpw ^0.0.x
  • @stdlib/blas-ext-base-grev ^0.0.x
  • @stdlib/blas-ext-base-gsort2hp ^0.0.x
  • @stdlib/blas-ext-base-gsort2ins ^0.0.x
  • @stdlib/blas-ext-base-gsort2sh ^0.0.x
  • @stdlib/blas-ext-base-gsorthp ^0.0.x
  • @stdlib/blas-ext-base-gsortins ^0.0.x
  • @stdlib/blas-ext-base-gsortsh ^0.0.x
  • @stdlib/blas-ext-base-gsum ^0.0.x
  • @stdlib/blas-ext-base-gsumkbn ^0.0.x
  • @stdlib/blas-ext-base-gsumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-gsumors ^0.0.x
  • @stdlib/blas-ext-base-gsumpw ^0.0.x
  • @stdlib/blas-ext-base-sapx ^0.0.x
  • @stdlib/blas-ext-base-sapxsum ^0.0.x
  • @stdlib/blas-ext-base-sapxsumkbn ^0.0.x
  • @stdlib/blas-ext-base-sapxsumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-sapxsumors ^0.0.x
  • @stdlib/blas-ext-base-sapxsumpw ^0.0.x
  • @stdlib/blas-ext-base-sasumpw ^0.0.x
  • @stdlib/blas-ext-base-scusum ^0.0.x
  • @stdlib/blas-ext-base-scusumkbn ^0.0.x
  • @stdlib/blas-ext-base-scusumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-scusumors ^0.0.x
  • @stdlib/blas-ext-base-scusumpw ^0.0.x
  • @stdlib/blas-ext-base-sdsapxsum ^0.0.x
  • @stdlib/blas-ext-base-sdsapxsumpw ^0.0.x
  • @stdlib/blas-ext-base-sdsnansum ^0.0.x
  • @stdlib/blas-ext-base-sdsnansumpw ^0.0.x
  • @stdlib/blas-ext-base-sdssum ^0.0.x
  • @stdlib/blas-ext-base-sdssumpw ^0.0.x
  • @stdlib/blas-ext-base-sfill ^0.0.x
  • @stdlib/blas-ext-base-snansum ^0.0.x
  • @stdlib/blas-ext-base-snansumkbn ^0.0.x
  • @stdlib/blas-ext-base-snansumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-snansumors ^0.0.x
  • @stdlib/blas-ext-base-snansumpw ^0.0.x
  • @stdlib/blas-ext-base-srev ^0.0.x
  • @stdlib/blas-ext-base-ssort2hp ^0.0.x
  • @stdlib/blas-ext-base-ssort2ins ^0.0.x
  • @stdlib/blas-ext-base-ssort2sh ^0.0.x
  • @stdlib/blas-ext-base-ssorthp ^0.0.x
  • @stdlib/blas-ext-base-ssortins ^0.0.x
  • @stdlib/blas-ext-base-ssortsh ^0.0.x
  • @stdlib/blas-ext-base-ssum ^0.0.x
  • @stdlib/blas-ext-base-ssumkbn ^0.0.x
  • @stdlib/blas-ext-base-ssumkbn2 ^0.0.x
  • @stdlib/blas-ext-base-ssumors ^0.0.x
  • @stdlib/blas-ext-base-ssumpw ^0.0.x
  • @stdlib/utils-define-read-only-property ^0.0.x
.github/workflows/benchmark.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request v3 composite
.github/workflows/examples.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/productionize.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • stdlib-js/bundle-action main composite
  • stdlib-js/transform-errors-action main composite
.github/workflows/publish.yml actions
  • JS-DevTools/npm-publish v1 composite
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/test.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/test_bundles.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • denoland/setup-deno v1 composite
.github/workflows/test_coverage.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/test_install.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite