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
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:
54
54
@@ -168,14 +168,14 @@ console.log( x );
168
168
#include"stdlib/blas/ext/base/dapx.h"
169
169
```
170
170
171
-
#### c_dapx( N, alpha, \*X, strideX )
171
+
#### stdlib_strided_dapx( N, alpha, \*X, strideX )
172
172
173
173
Adds a scalar constant to each element in a double-precision floating-point strided array.
174
174
175
175
```c
176
176
double x[] = { 1.0, 2.0, 3.0, 4.0 };
177
177
178
-
c_dapx( 4, 5.0, x, 1 );
178
+
stdlib_strided_dapx( 4, 5.0, x, 1 );
179
179
180
180
```
181
181
@@ -187,29 +187,29 @@ The function accepts the following arguments:
187
187
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
0 commit comments