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/base/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ var o = blas;
88
88
- <spanclass="signature">[`zaxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/zaxpy]</span><spanclass="delimiter">: </span><spanclass="description">scale a double-precision complex floating-point vector by a double-precision complex floating-point constant and add the result to a double-precision complex floating-point vector.</span>
89
89
- <spanclass="signature">[`zcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/zcopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from one complex double-precision floating-point vector to another complex double-precision floating-point vector.</span>
90
90
- <spanclass="signature">[`zdrot( N, x, strideX, y, strideY, c, s )`][@stdlib/blas/base/zdrot]</span><spanclass="delimiter">: </span><spanclass="description">apply a plane rotation.</span>
91
-
- <spanclass="signature">[`zdscal( N, da, zx, strideZX )`][@stdlib/blas/base/zdscal]</span><spanclass="delimiter">: </span><spanclass="description">scale a double-precision complex floating-point vector by a double-precision floating-point constant.</span>
91
+
- <spanclass="signature">[`zdscal( N, alpha, x, strideX )`][@stdlib/blas/base/zdscal]</span><spanclass="delimiter">: </span><spanclass="description">scale a double-precision complex floating-point vector by a double-precision floating-point constant.</span>
92
92
- <spanclass="signature">[`zscal( N, alpha, x, strideX )`][@stdlib/blas/base/zscal]</span><spanclass="delimiter">: </span><spanclass="description">scales a double-precision complex floating-point vector by a double-precision complex floating-point constant.</span>
93
93
- <spanclass="signature">[`zswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/zswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two complex double-precision floating-point vectors.</span>
The function has the following additional parameters:
96
96
97
-
-**offsetZX**: starting index for `zx`.
97
+
-**offsetX**: starting index for `x`.
98
98
99
99
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameter supports indexing semantics based on a starting index. For example, to scale every other element in the input strided array starting from the second element,
100
100
101
101
```javascript
102
102
var Complex128Array =require( '@stdlib/array/complex128' );
0 commit comments