Skip to content

Commit e76e445

Browse files
Planeshifterstdlib-bot
authored andcommitted
docs: update namespace table of contents
Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
1 parent 5619c1a commit e76e445

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

lib/node_modules/@stdlib/blas/ext/base/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ var o = ns;
9292
- <span class="signature">[`dediff( N, x, strideX, N1, prepend, strideP, N2, append, strideA, out, strideOut )`][@stdlib/blas/ext/base/dediff]</span><span class="delimiter">: </span><span class="description">calculate the differences between consecutive elements of a double-precision floating-point strided array.</span>
9393
- <span class="signature">[`dfillEqual( N, searchElement, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill-equal]</span><span class="delimiter">: </span><span class="description">replace double-precision floating-point strided array elements equal to a provided search element with a specified scalar constant.</span>
9494
- <span class="signature">[`dfillNaN( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill-nan]</span><span class="delimiter">: </span><span class="description">replace double-precision floating-point strided array elements equal to `NaN` with a specified scalar constant.</span>
95+
- <span class="signature">[`dfillNotEqual( N, searchElement, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill-not-equal]</span><span class="delimiter">: </span><span class="description">replace double-precision floating-point strided array elements not equal to a provided search element with a specified scalar constant.</span>
9596
- <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>
97+
- <span class="signature">[`dfirstIndexEqual( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dfirst-index-equal]</span><span class="delimiter">: </span><span class="description">return the index of the first element in a double-precision floating-point strided array equal to a corresponding element in another double-precision floating-point strided array.</span>
9698
- <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>
9799
- <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>
98100
- <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>
@@ -295,6 +297,7 @@ var o = ns;
295297
- <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>
296298
- <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>
297299
- <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>
300+
- <span class="signature">[`sfirstIndexEqual( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/sfirst-index-equal]</span><span class="delimiter">: </span><span class="description">return the index of the first element in a single-precision floating-point strided array equal to a corresponding element in another single-precision floating-point strided array.</span>
298301
- <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>
299302
- <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>
300303
- <span class="signature">[`sindexOfRow( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/sindex-of-row]</span><span class="delimiter">: </span><span class="description">return the index of the first row in a single-precision floating-point input matrix which has the same elements as a provided search vector.</span>
@@ -515,8 +518,12 @@ console.log( objectKeys( ns ) );
515518

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

521+
[@stdlib/blas/ext/base/dfill-not-equal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dfill-not-equal
522+
518523
[@stdlib/blas/ext/base/dfill]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dfill
519524

525+
[@stdlib/blas/ext/base/dfirst-index-equal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dfirst-index-equal
526+
520527
[@stdlib/blas/ext/base/dindex-of-column]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dindex-of-column
521528

522529
[@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
@@ -921,6 +928,8 @@ console.log( objectKeys( ns ) );
921928

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

931+
[@stdlib/blas/ext/base/sfirst-index-equal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/sfirst-index-equal
932+
924933
[@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
925934

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

lib/node_modules/@stdlib/math/base/special/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ var fcns = special;
348348
- <span class="signature">[`gamma( x )`][@stdlib/math/base/special/gamma]</span><span class="delimiter">: </span><span class="description">gamma function.</span>
349349
- <span class="signature">[`gamma1pm1( x )`][@stdlib/math/base/special/gamma1pm1]</span><span class="delimiter">: </span><span class="description">compute `gamma(x+1) - 1`.</span>
350350
- <span class="signature">[`gammainc( x, s[, regularized[, upper ]] )`][@stdlib/math/base/special/gammainc]</span><span class="delimiter">: </span><span class="description">incomplete gamma function.</span>
351-
- <span class="signature">[`gammaincinv( p, s[, upper ] )`][@stdlib/math/base/special/gammaincinv]</span><span class="delimiter">: </span><span class="description">inverse of incomplete gamma function.</span>
351+
- <span class="signature">[`gammaincinv( p, a[, upper ] )`][@stdlib/math/base/special/gammaincinv]</span><span class="delimiter">: </span><span class="description">inverse of incomplete gamma function.</span>
352352
- <span class="signature">[`gammaln( x )`][@stdlib/math/base/special/gammaln]</span><span class="delimiter">: </span><span class="description">natural logarithm of the gamma function.</span>
353353
- <span class="signature">[`gammasgn( x )`][@stdlib/math/base/special/gammasgn]</span><span class="delimiter">: </span><span class="description">sign of the gamma function.</span>
354354
- <span class="signature">[`gammasgnf( x )`][@stdlib/math/base/special/gammasgnf]</span><span class="delimiter">: </span><span class="description">sign of the gamma function for a single-precision floating-point number.</span>

0 commit comments

Comments
 (0)