Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions lib/node_modules/@stdlib/blas/ext/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ var o = ns;
- <span class="signature">[`dlinspace( N, start, stop, endpoint, x, strideX )`][@stdlib/blas/ext/base/dlinspace]</span><span class="delimiter">: </span><span class="description">fill a double-precision floating-point strided array with linearly spaced values over a specified interval.</span>
- <span class="signature">[`dlogspace( N, base, start, stop, endpoint, x, strideX )`][@stdlib/blas/ext/base/dlogspace]</span><span class="delimiter">: </span><span class="description">fill a double-precision floating-point strided array with logarithmically spaced values over a specified interval.</span>
- <span class="signature">[`dminheapSiftDown( N, index, value, x, strideX )`][@stdlib/blas/ext/base/dminheap-sift-down]</span><span class="delimiter">: </span><span class="description">sift a value down from a specified index in a double-precision floating-point strided min-heap until the heap property is restored.</span>
- <span class="signature">[`dminheapify( N, x, strideX )`][@stdlib/blas/ext/base/dminheapify]</span><span class="delimiter">: </span><span class="description">convert a double-precision floating-point strided array to a min-heap.</span>
- <span class="signature">[`dmskrev( N, x, strideX, mask, strideMask )`][@stdlib/blas/ext/base/dmskrev]</span><span class="delimiter">: </span><span class="description">reverse a double-precision floating-point strided array in-place according to a mask.</span>
- <span class="signature">[`dnanasum( N, x, strideX )`][@stdlib/blas/ext/base/dnanasum]</span><span class="delimiter">: </span><span class="description">calculate the sum of absolute values (_L1_ norm) of double-precision floating-point strided array elements, ignoring `NaN` values.</span>
- <span class="signature">[`dnanasumors( N, x, strideX )`][@stdlib/blas/ext/base/dnanasumors]</span><span class="delimiter">: </span><span class="description">calculate the sum of absolute values (_L1_ norm) of double-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation.</span>
Expand Down Expand Up @@ -252,12 +253,14 @@ var o = ns;
- <span class="signature">[`gsumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/gsumkbn2]</span><span class="delimiter">: </span><span class="description">calculate the sum of strided array elements using a second-order iterative Kahan–Babuška algorithm.</span>
- <span class="signature">[`gsumors( N, x, strideX )`][@stdlib/blas/ext/base/gsumors]</span><span class="delimiter">: </span><span class="description">calculate the sum of strided array elements using ordinary recursive summation.</span>
- <span class="signature">[`gsumpw( N, x, strideX )`][@stdlib/blas/ext/base/gsumpw]</span><span class="delimiter">: </span><span class="description">calculate the sum of strided array elements using pairwise summation.</span>
- <span class="signature">[`gtriu( order, M, N, k, A, LDA, B, LDB )`][@stdlib/blas/ext/base/gtriu]</span><span class="delimiter">: </span><span class="description">copy the upper triangular part of a matrix `A` to another matrix `B`.</span>
- <span class="signature">[`gunitspace( N, start, x, strideX )`][@stdlib/blas/ext/base/gunitspace]</span><span class="delimiter">: </span><span class="description">fill a strided array with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
- <span class="signature">[`gvander( order, mode, M, N, x, strideX, out, ldo )`][@stdlib/blas/ext/base/gvander]</span><span class="delimiter">: </span><span class="description">generate a Vandermonde matrix.</span>
- <span class="signature">[`gwapx( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/gwapx]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each element in a strided array `x` and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwax( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/gwax]</span><span class="delimiter">: </span><span class="description">multiply each element in a strided array `x` by a scalar constant and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwaxpb( N, alpha, beta, x, strideX, w, strideW )`][@stdlib/blas/ext/base/gwaxpb]</span><span class="delimiter">: </span><span class="description">multiply each element in a strided array `x` by a scalar constant and add a scalar constant before assigning the results to a strided array `w`.</span>
- <span class="signature">[`gwhere( N, condition, strideC, x, strideX, y, strideY, out, strideOut )`][@stdlib/blas/ext/base/gwhere]</span><span class="delimiter">: </span><span class="description">take elements from one of two strided arrays depending on a condition.</span>
- <span class="signature">[`gwxmy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/gwxmy]</span><span class="delimiter">: </span><span class="description">multiply elements of a strided array `x` by the corresponding elements of a strided array `y` and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwxpy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/gwxpy]</span><span class="delimiter">: </span><span class="description">add elements of a strided array `x` to the corresponding elements of a strided array `y` and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwxsa( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/gwxsa]</span><span class="delimiter">: </span><span class="description">subtract a scalar constant from each element in a strided array `x` and assign the results to elements in a strided array `w`.</span>
- <span class="signature">[`gwxsy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/gwxsy]</span><span class="delimiter">: </span><span class="description">subtract elements of a strided array `y` from the corresponding elements of a strided array `x` and assign the results to elements in a strided array `w`.</span>
Expand Down Expand Up @@ -359,6 +362,8 @@ var o = ns;
- <span class="signature">[`zapx( N, alpha, x, strideX )`][@stdlib/blas/ext/base/zapx]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each element in a double-precision complex floating-point strided array.</span>
- <span class="signature">[`zaxpb( N, alpha, beta, x, strideX )`][@stdlib/blas/ext/base/zaxpb]</span><span class="delimiter">: </span><span class="description">multiply each element in a double-precision complex floating-point strided array by a scalar constant and add a scalar constant to each result.</span>
- <span class="signature">[`zaxpby( N, alpha, x, strideX, beta, y, strideY )`][@stdlib/blas/ext/base/zaxpby]</span><span class="delimiter">: </span><span class="description">multiply a double-precision complex floating-point strided array `x` by a constant and add the result to a double-precision complex floating-point strided array `y` multiplied by a constant.</span>
- <span class="signature">[`zcartesianProduct( order, M, N, x, strideX, y, strideY, out, LDO )`][@stdlib/blas/ext/base/zcartesian-product]</span><span class="delimiter">: </span><span class="description">compute the Cartesian product for two double-precision complex floating-point strided arrays.</span>
- <span class="signature">[`zcartesianSquare( order, N, x, strideX, out, LDO )`][@stdlib/blas/ext/base/zcartesian-square]</span><span class="delimiter">: </span><span class="description">compute the Cartesian square for a double-precision complex floating-point strided array.</span>
- <span class="signature">[`zdiff( N, k, x, strideX, N1, prepend, strideP, N2, append, strideA, out, strideOut, workspace, strideW )`][@stdlib/blas/ext/base/zdiff]</span><span class="delimiter">: </span><span class="description">calculate the k-th discrete forward difference of a double-precision complex floating-point strided array.</span>
- <span class="signature">[`zfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/zfill]</span><span class="delimiter">: </span><span class="description">fill a double-precision complex floating-point strided array with a specified scalar constant.</span>
- <span class="signature">[`zindexOfColumn( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/zindex-of-column]</span><span class="delimiter">: </span><span class="description">return the index of the first column in a double-precision complex floating-point input matrix which has the same elements as a provided search vector.</span>
Expand Down Expand Up @@ -566,6 +571,8 @@ console.log( objectKeys( ns ) );

[@stdlib/blas/ext/base/dminheap-sift-down]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dminheap-sift-down

[@stdlib/blas/ext/base/dminheapify]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dminheapify

[@stdlib/blas/ext/base/dmskrev]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dmskrev

[@stdlib/blas/ext/base/dnanasum]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dnanasum
Expand Down Expand Up @@ -850,6 +857,8 @@ console.log( objectKeys( ns ) );

[@stdlib/blas/ext/base/gsumpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gsumpw

[@stdlib/blas/ext/base/gtriu]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gtriu

[@stdlib/blas/ext/base/gunitspace]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gunitspace

[@stdlib/blas/ext/base/gvander]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gvander
Expand All @@ -862,6 +871,8 @@ console.log( objectKeys( ns ) );

[@stdlib/blas/ext/base/gwhere]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwhere

[@stdlib/blas/ext/base/gwxmy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwxmy

[@stdlib/blas/ext/base/gwxpy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwxpy

[@stdlib/blas/ext/base/gwxsa]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gwxsa
Expand Down Expand Up @@ -1064,6 +1075,10 @@ console.log( objectKeys( ns ) );

[@stdlib/blas/ext/base/zaxpby]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zaxpby

[@stdlib/blas/ext/base/zcartesian-product]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zcartesian-product

[@stdlib/blas/ext/base/zcartesian-square]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zcartesian-square

[@stdlib/blas/ext/base/zdiff]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zdiff

[@stdlib/blas/ext/base/zfill]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zfill
Expand Down
Loading
Loading