You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2024-12-23)
7
+
## Unreleased (2025-01-14)
8
8
9
9
<sectionclass="features">
10
10
@@ -32,6 +32,7 @@
32
32
33
33
<details>
34
34
35
+
-[`02cbff3`](https://github.com/stdlib-js/stdlib/commit/02cbff35d876dcea7efd41794f414c7df5eddca4) - **refactor:** update `blas/ext/base/dapx` to follow current project conventions [(#4737)](https://github.com/stdlib-js/stdlib/pull/4737)_(by Muhammad Haris)_
35
36
-[`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_
36
37
-[`ff25e13`](https://github.com/stdlib-js/stdlib/commit/ff25e1324e1507cc076078e82badce7fdf7915f6) - **docs:** remove excess whitespace _(by Philipp Burckhardt)_
37
38
-[`1ea5a78`](https://github.com/stdlib-js/stdlib/commit/1ea5a786066c959ee3560a58ca884ffe1fa6a4de) - **docs:** remove stray character in `blas/ext/base/dapx` documentation [(#3250)](https://github.com/stdlib-js/stdlib/pull/3250)_(by Muhammad Haris)_
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to add a constant to every other element:
87
87
@@ -201,14 +201,14 @@ console.log( x );
201
201
#include"stdlib/blas/ext/base/dapx.h"
202
202
```
203
203
204
-
#### c_dapx( N, alpha, \*X, strideX )
204
+
#### stdlib_strided_dapx( N, alpha, \*X, strideX )
205
205
206
206
Adds a scalar constant to each element in a double-precision floating-point strided array.
207
207
208
208
```c
209
209
double x[] = { 1.0, 2.0, 3.0, 4.0 };
210
210
211
-
c_dapx( 4, 5.0, x, 1 );
211
+
stdlib_strided_dapx( 4, 5.0, x, 1 );
212
212
213
213
```
214
214
@@ -220,29 +220,29 @@ The function accepts the following arguments:
220
220
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
0 commit comments