Skip to content
Merged
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
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/blas/ext/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ var o = ns;
- <span class="signature">[`dfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill]</span><span class="delimiter">: </span><span class="description">fill a double-precision floating-point strided array with a specified scalar constant.</span>
- <span class="signature">[`dindexOfColumn( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/dindex-of-column]</span><span class="delimiter">: </span><span class="description">return the index of the first column in a double-precision floating-point input matrix which has the same elements as a provided search vector.</span>
- <span class="signature">[`dindexOfFalsy( N, x, strideX )`][@stdlib/blas/ext/base/dindex-of-falsy]</span><span class="delimiter">: </span><span class="description">return the index of the first falsy element in a double-precision floating-point strided array.</span>
- <span class="signature">[`dindexOfNotEqual( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/dindex-of-not-equal]</span><span class="delimiter">: </span><span class="description">return the first index of an element in a double-precision floating-point strided array which is not equal to a specified search element.</span>
- <span class="signature">[`dindexOfRow( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/dindex-of-row]</span><span class="delimiter">: </span><span class="description">return the index of the first row in a double-precision floating-point input matrix which has the same elements as a provided search vector.</span>
- <span class="signature">[`dindexOfTruthy( N, x, strideX )`][@stdlib/blas/ext/base/dindex-of-truthy]</span><span class="delimiter">: </span><span class="description">return the index of the first truthy element in a double-precision floating-point strided array.</span>
- <span class="signature">[`dindexOf( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/dindex-of]</span><span class="delimiter">: </span><span class="description">return the first index of a specified search element in a double-precision floating-point strided array.</span>
Expand Down Expand Up @@ -290,7 +291,9 @@ var o = ns;
- <span class="signature">[`sdssum( N, x, strideX )`][@stdlib/blas/ext/base/sdssum]</span><span class="delimiter">: </span><span class="description">calculate the sum of single-precision floating-point strided array elements using extended accumulation.</span>
- <span class="signature">[`sdssumpw( N, x, strideX )`][@stdlib/blas/ext/base/sdssumpw]</span><span class="delimiter">: </span><span class="description">calculate the sum of single-precision floating-point strided array elements using pairwise summation with extended accumulation.</span>
- <span class="signature">[`sediff( N, x, strideX, N1, prepend, strideP, N2, append, strideA, out, strideOut )`][@stdlib/blas/ext/base/sediff]</span><span class="delimiter">: </span><span class="description">calculate the differences between consecutive elements of a single-precision floating-point strided array.</span>
- <span class="signature">[`sfillEqual( N, searchElement, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill-equal]</span><span class="delimiter">: </span><span class="description">replace single-precision floating-point strided array elements equal to a provided search element with a specified scalar constant.</span>
- <span class="signature">[`sfillNaN( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill-nan]</span><span class="delimiter">: </span><span class="description">replace single-precision floating-point strided array elements equal to `NaN` with a specified scalar constant.</span>
- <span class="signature">[`sfillNotEqual( N, searchElement, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill-not-equal]</span><span class="delimiter">: </span><span class="description">replace single-precision floating-point strided array elements not equal to a provided search element with a specified scalar constant.</span>
- <span class="signature">[`sfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill]</span><span class="delimiter">: </span><span class="description">fill a single-precision floating-point strided array with a specified scalar constant.</span>
- <span class="signature">[`sindexOfColumn( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/sindex-of-column]</span><span class="delimiter">: </span><span class="description">return the index of the first column in a single-precision floating-point input matrix which has the same elements as a provided search vector.</span>
- <span class="signature">[`sindexOfFalsy( N, x, strideX )`][@stdlib/blas/ext/base/sindex-of-falsy]</span><span class="delimiter">: </span><span class="description">return the index of the first falsy element in a single-precision floating-point strided array.</span>
Expand Down Expand Up @@ -518,6 +521,8 @@ console.log( objectKeys( ns ) );

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

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

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

[@stdlib/blas/ext/base/dindex-of-truthy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dindex-of-truthy
Expand Down Expand Up @@ -908,8 +913,12 @@ console.log( objectKeys( ns ) );

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

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

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

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

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

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