Skip to content

Commit 6dbe714

Browse files
committed
Auto-generated commit
1 parent 1f20e51 commit 6dbe714

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-03)
7+
## Unreleased (2026-04-04)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`a45ea82`](https://github.com/stdlib-js/stdlib/commit/a45ea826f197439c6c47b5ba8604cf62cacf58b5) - add `blas/ext/base/zindex-of-row` [(#11239)](https://github.com/stdlib-js/stdlib/pull/11239)
14+
- [`8b19d00`](https://github.com/stdlib-js/stdlib/commit/8b19d00b71edcd61143c31573eab59cfc6936ab4) - add `blas/ext/base/ndarray/zzero-to` [(#11263)](https://github.com/stdlib-js/stdlib/pull/11263)
15+
- [`b9e4786`](https://github.com/stdlib-js/stdlib/commit/b9e4786e846b86bc14ce82a411c07ca8ebbfef32) - add `blas/ext/base/ndarray/czero-to` [(#11261)](https://github.com/stdlib-js/stdlib/pull/11261)
1316
- [`5e92b2e`](https://github.com/stdlib-js/stdlib/commit/5e92b2ead2deb9c3ae9fdd92c89b70ab9aeb484d) - add `gindexOfColumn` to namespace
1417
- [`d9f3a19`](https://github.com/stdlib-js/stdlib/commit/d9f3a193e6aa81f6e7f2baf25baa625584e62054) - add `blas/ext/base/gindex-of-column` [(#11240)](https://github.com/stdlib-js/stdlib/pull/11240)
1518
- [`5ea3825`](https://github.com/stdlib-js/stdlib/commit/5ea3825ac5f8b9629ad0946e160ec5da041838f1) - add `sindexOfRow` to namespace
@@ -100,6 +103,11 @@
100103

101104
<details>
102105

106+
- [`539e603`](https://github.com/stdlib-js/stdlib/commit/539e603a2ff1164233a5c54e95b2fb8340418eec) - **docs:** update namespace table of contents [(#11292)](https://github.com/stdlib-js/stdlib/pull/11292) _(by stdlib-bot)_
107+
- [`a45ea82`](https://github.com/stdlib-js/stdlib/commit/a45ea826f197439c6c47b5ba8604cf62cacf58b5) - **feat:** add `blas/ext/base/zindex-of-row` [(#11239)](https://github.com/stdlib-js/stdlib/pull/11239) _(by Muhammad Haris, Athan Reines)_
108+
- [`8b19d00`](https://github.com/stdlib-js/stdlib/commit/8b19d00b71edcd61143c31573eab59cfc6936ab4) - **feat:** add `blas/ext/base/ndarray/zzero-to` [(#11263)](https://github.com/stdlib-js/stdlib/pull/11263) _(by Muhammad Haris)_
109+
- [`b9e4786`](https://github.com/stdlib-js/stdlib/commit/b9e4786e846b86bc14ce82a411c07ca8ebbfef32) - **feat:** add `blas/ext/base/ndarray/czero-to` [(#11261)](https://github.com/stdlib-js/stdlib/pull/11261) _(by Muhammad Haris)_
110+
- [`62019bc`](https://github.com/stdlib-js/stdlib/commit/62019bc2c7d48c306c0febf889b6eecccc8858f3) - **test:** rename fixture folders to follow project conventions _(by Athan Reines)_
103111
- [`5e92b2e`](https://github.com/stdlib-js/stdlib/commit/5e92b2ead2deb9c3ae9fdd92c89b70ab9aeb484d) - **feat:** add `gindexOfColumn` to namespace _(by Athan Reines)_
104112
- [`d9f3a19`](https://github.com/stdlib-js/stdlib/commit/d9f3a193e6aa81f6e7f2baf25baa625584e62054) - **feat:** add `blas/ext/base/gindex-of-column` [(#11240)](https://github.com/stdlib-js/stdlib/pull/11240) _(by Muhammad Haris)_
105113
- [`faaf3b3`](https://github.com/stdlib-js/stdlib/commit/faaf3b363bc48813c2c82b4b930727ae257cde54) - **docs:** update namespace table of contents [(#11276)](https://github.com/stdlib-js/stdlib/pull/11276) _(by stdlib-bot)_

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ var o = ns;
157157
- <span class="signature">[`gfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gfill]</span><span class="delimiter">: </span><span class="description">fill a strided array with a specified scalar constant.</span>
158158
- <span class="signature">[`gfindIndex( N, x, strideX, clbk[, thisArg] )`][@stdlib/blas/ext/base/gfind-index]</span><span class="delimiter">: </span><span class="description">return the index of the first element which passes a test implemented by a predicate function.</span>
159159
- <span class="signature">[`gfindLastIndex( N, x, strideX, clbk[, thisArg] )`][@stdlib/blas/ext/base/gfind-last-index]</span><span class="delimiter">: </span><span class="description">return the index of the last element which passes a test implemented by a predicate function.</span>
160+
- <span class="signature">[`gindexOfColumn( order, M, N, A, LDA, x, strideX )`][@stdlib/blas/ext/base/gindex-of-column]</span><span class="delimiter">: </span><span class="description">return the index of the first column in an input matrix which has the same elements as a provided search vector.</span>
160161
- <span class="signature">[`gindexOfRow( order, M, N, A, LDA, x, strideX )`][@stdlib/blas/ext/base/gindex-of-row]</span><span class="delimiter">: </span><span class="description">return the index of the first row in an input matrix which has the same elements as a provided search vector.</span>
161162
- <span class="signature">[`gindexOf( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/gindex-of]</span><span class="delimiter">: </span><span class="description">return the first index of a specified search element in a strided array.</span>
162163
- <span class="signature">[`gjoinBetween( N, prefix, suffix, x, strideX, separators, strideS )`][@stdlib/blas/ext/base/gjoin-between]</span><span class="delimiter">: </span><span class="description">return a string by joining strided array elements using a specified separator for each pair of consecutive elements.</span>
@@ -513,6 +514,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
513514

514515
[@stdlib/blas/ext/base/gfind-last-index]: https://github.com/stdlib-js/blas-ext-base-gfind-last-index
515516

517+
[@stdlib/blas/ext/base/gindex-of-column]: https://github.com/stdlib-js/blas-ext-base-gindex-of-column
518+
516519
[@stdlib/blas/ext/base/gindex-of-row]: https://github.com/stdlib-js/blas-ext-base-gindex-of-row
517520

518521
[@stdlib/blas/ext/base/gindex-of]: https://github.com/stdlib-js/blas-ext-base-gindex-of

0 commit comments

Comments
 (0)