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: lib/node_modules/@stdlib/blas/ext/base/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ var ns = extblas;
125
125
- <spanclass="signature">[`sapxsum( N, alpha, x, stride )`][@stdlib/blas/ext/base/sapxsum]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each single-precision floating-point strided array element and compute the sum.</span>
126
126
- <spanclass="signature">[`sapxsumkbn( N, alpha, x, stride )`][@stdlib/blas/ext/base/sapxsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each single-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm.</span>
127
127
- <spanclass="signature">[`sapxsumkbn2( N, alpha, x, stride )`][@stdlib/blas/ext/base/sapxsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each single-precision floating-point strided array element and compute the sum using a second-order iterative Kahan–Babuška algorithm.</span>
128
-
- <spanclass="signature">[`sapxsumors( N, alpha, x, stride )`][@stdlib/blas/ext/base/sapxsumors]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each single-precision floating-point strided array element and compute the sum using ordinary recursive summation.</span>
128
+
- <spanclass="signature">[`sapxsumors( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumors]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum using ordinary recursive summation.</span>
129
129
- <spanclass="signature">[`sapxsumpw( N, alpha, x, stride )`][@stdlib/blas/ext/base/sapxsumpw]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each single-precision floating-point strided array element and compute the sum using pairwise summation.</span>
130
130
- <spanclass="signature">[`sasumpw( N, x, stride )`][@stdlib/blas/ext/base/sasumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values (_L1_ norm) of single-precision floating-point strided array elements using pairwise summation.</span>
131
131
- <spanclass="signature">[`scusum( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/scusum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative sum of single-precision floating-point strided array elements.</span>
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`.
Copy file name to clipboardexpand all lines: lib/node_modules/@stdlib/blas/ext/base/dapxsumors/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -280,10 +280,10 @@ int main( void ) {
280
280
281
281
## See Also
282
282
283
-
- <span class="package-name">[`@stdlib/blas/ext/base/dapxsum`][@stdlib/blas/ext/base/dapxsum]</span><span class="delimiter">: </span><span class="description">adds a constant to each double-precision floating-point strided array element and computes the sum.</span>
283
+
- <span class="package-name">[`@stdlib/blas/ext/base/dapxsum`][@stdlib/blas/ext/base/dapxsum]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each double-precision floating-point strided array element and compute the sum.</span>
284
284
- <span class="package-name">[`@stdlib/blas/ext/base/dsumors`][@stdlib/blas/ext/base/dsumors]</span><span class="delimiter">: </span><span class="description">calculate the sum of double-precision floating-point strided array elements using ordinary recursive summation.</span>
285
-
- <span class="package-name">[`@stdlib/blas/ext/base/gapxsumors`][@stdlib/blas/ext/base/gapxsumors]</span><span class="delimiter">: </span><span class="description">adds a constant to each strided array element and computes the sum using ordinary recursive summation.</span>
286
-
- <span class="package-name">[`@stdlib/blas/ext/base/sapxsumors`][@stdlib/blas/ext/base/sapxsumors]</span><span class="delimiter">: </span><span class="description">adds a constant to each single-precision floating-point strided array element and computes the sum using ordinary recursive summation.</span>
285
+
- <span class="package-name">[`@stdlib/blas/ext/base/gapxsumors`][@stdlib/blas/ext/base/gapxsumors]</span><span class="delimiter">: </span><span class="description">add a constant to each strided array element and compute the sum using ordinary recursive summation.</span>
286
+
- <span class="package-name">[`@stdlib/blas/ext/base/sapxsumors`][@stdlib/blas/ext/base/sapxsumors]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum using ordinary recursive summation.</span>
0 commit comments