Skip to content

Commit 12b5d43

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 4d983d1 commit 12b5d43

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/zdrot

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/zdrot/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var y = new Complex128Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
6363

6464
zdrot( 2, x, 2, y, 2, 0.8, 0.6 );
6565
// x => <Complex128Array>[ ~0.8, ~1.6, 3.0, 4.0, 4.0, ~4.8, 7.0, 8.0 ]
66-
// y => <Complex128Array>[ ~-0.6, ~-1.2, 0.0, 0.0, -3.0, ~-3.6, 0.0, 0.0 ]
66+
// y => <Complex128Array>[ ~-0.6, ~-1.2, 0.0, 0.0, -3.0, ~-3.6, 0.0, 0.0 ]
6767
```
6868

6969
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.
@@ -83,7 +83,7 @@ var y1 = new Complex128Array( y0.buffer, y0.BYTES_PER_ELEMENT*2 ); // start at 3
8383

8484
zdrot( 2, x1, -2, y1, 1, 0.8, 0.6 );
8585
// x0 => <Complex128Array>[ 1.0, 2.0, ~2.4, ~3.2, 5.0, 6.0, ~5.6, ~6.4 ]
86-
// y0 => <Complex128Array>[ 0.0, 0.0, 0.0, 0.0, ~-4.2, ~-4.8, ~-1.8, ~-2.4 ]
86+
// y0 => <Complex128Array>[ 0.0, 0.0, 0.0, 0.0, ~-4.2, ~-4.8, ~-1.8, ~-2.4 ]
8787
```
8888

8989
#### zdrot.ndarray( N, x, strideX, offsetX, y, strideY, offsetY, c, s )

0 commit comments

Comments
 (0)