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 traverse every other value,
53
53
@@ -78,7 +78,7 @@ var out = dzasum( 2, x1, 1 );
78
78
79
79
#### dzasum.ndarray( N, x, strideX, offsetX )
80
80
81
-
Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point vector using alternative indexing semantics.
81
+
Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point strided array using alternative indexing semantics.
82
82
83
83
```javascript
84
84
var Complex128Array =require( '@stdlib/array/complex128' );
* Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point vector using alternative indexing semantics.
48
+
* Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point strided array using alternative indexing semantics.
49
49
*
50
50
* @param N - number of indexed elements
51
51
* @param x - input array
@@ -65,7 +65,7 @@ interface Routine {
65
65
}
66
66
67
67
/**
68
-
* Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point vector.
68
+
* Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point strided array.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dzasum/lib/index.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@
19
19
'use strict';
20
20
21
21
/**
22
-
* BLAS level 1 routine to compute the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point vector.
22
+
* BLAS level 1 routine to compute the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point strided array.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dzasum/test/test.dzasum.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ tape( 'the function has an arity of 3', function test( t ) {
65
65
t.end();
66
66
});
67
67
68
-
tape('the function computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point vector',functiontest(t){
68
+
tape('the function computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point strided array',functiontest(t){
69
69
varexpected;
70
70
varactual;
71
71
varx;
@@ -177,7 +177,7 @@ tape( 'the function supports specifying a negative stride', function test( t ) {
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dzasum/test/test.ndarray.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ tape( 'the function has an arity of 4', function test( t ) {
65
65
t.end();
66
66
});
67
67
68
-
tape('the function computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point vector',functiontest(t){
68
+
tape('the function computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point strided array',functiontest(t){
0 commit comments