Skip to content

Commit 4ec2cd0

Browse files
committed
docs: update copy
1 parent a7badd8 commit 4ec2cd0

File tree

24 files changed

+25
-25
lines changed

24 files changed

+25
-25
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The function has the following additional parameters:
143143
- **offsetX**: starting index for `x`.
144144
- **offsetY**: starting index for `y`.
145145

146-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameters support indexing semantics based on starting indices. For example, to copy every other value in `x` starting from the second value into the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`,...,
146+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to copy every other value in `x` starting from the second value into the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`,...,
147147

148148
```javascript
149149
var Complex64Array = require( '@stdlib/array/complex64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ The function has the following additional parameters:
179179
- **offsetX**: starting index for `x`.
180180
- **offsetY**: starting index for `y`.
181181

182-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameters support indexing semantics based on starting indices. For example, to interchange every other value in `x` starting from the second value into the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`,...,
182+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to interchange every other value in `x` starting from the second value into the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`,...,
183183

184184
```javascript
185185
var Complex64Array = require( '@stdlib/array/complex64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The function has the following additional parameters:
116116

117117
- **offset**: starting index.
118118

119-
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 sum the last three elements,
119+
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 sum the last three elements,
120120

121121
```javascript
122122
var Float64Array = require( '@stdlib/array/float64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The function has the following additional parameters:
107107
- **offsetX**: starting index for `x`.
108108
- **offsetY**: starting index for `y`.
109109

110-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameters support indexing semantics based on starting indices. For example, to multiply every other value in `x` by a constant `alpha` starting from the second value and add to the last `N` elements in `y` where `x[i] -> y[n]`, `x[i+2] -> y[n-1]`,...,
110+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to multiply every other value in `x` by a constant `alpha` starting from the second value and add to the last `N` elements in `y` where `x[i] -> y[n]`, `x[i+2] -> y[n-1]`,...,
111111

112112
```javascript
113113
var Float64Array = require( '@stdlib/array/float64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ The function has the following additional parameters:
103103
- **offsetX**: starting index for `x`.
104104
- **offsetY**: starting index for `y`.
105105

106-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameters support indexing semantics based on starting indices. For example, to copy every other value in `x` starting from the second value into the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`,...,
106+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to copy every other value in `x` starting from the second value into the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`,...,
107107

108108
```javascript
109109
var Float64Array = require( '@stdlib/array/float64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ The function has the following additional parameters:
123123
- **offsetX**: starting index for `x`.
124124
- **offsetY**: starting index for `y`.
125125

126-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameters support indexing semantics based on starting indices. For example, to calculate the dot product of every other value in `x` starting from the second value with the last 3 elements in `y` in reverse order
126+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to calculate the dot product of every other value in `x` starting from the second value with the last 3 elements in `y` in reverse order
127127

128128
```javascript
129129
var Float64Array = require( '@stdlib/array/float64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The function has the following additional parameters:
110110

111111
- **offset**: starting index for `x`.
112112

113-
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 calculate the [L2-norm][l2-norm] for every other value in `x` starting from the second value
113+
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 calculate the [L2-norm][l2-norm] for every other value in `x` starting from the second value
114114

115115
```javascript
116116
var Float64Array = require( '@stdlib/array/float64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The function has the following additional parameters:
9696

9797
- **offset**: starting index.
9898

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 multiply the last three elements of `x` by a constant
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 multiply the last three elements of `x` by a constant
100100

101101
```javascript
102102
var Float64Array = require( '@stdlib/array/float64' );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The function has the following parameters:
5353
- **y**: second input [`Float64Array`][mdn-float64array].
5454
- **strideY**: index increment for `y`.
5555

56-
The `N` and stride parameters determine how values from `x` and `y` are accessed at runtime. For example, to swap in reverse order every other value in `x` with the first `N` elements of `y`,
56+
The `N` and stride parameters determine how values in the strided arrays are accessed at runtime. For example, to swap in reverse order every other value in `x` with the first `N` elements of `y`,
5757

5858
```javascript
5959
var Float64Array = require( '@stdlib/array/float64' );
@@ -107,7 +107,7 @@ The function has the following additional parameters:
107107
- **offsetX**: starting index for `x`.
108108
- **offsetY**: starting index for `y`.
109109

110-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameters support indexing semantics based on starting indices. For example, to swap every other value in `x` starting from the second value with the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`,...,
110+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to swap every other value in `x` starting from the second value with the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`,...,
111111

112112
```javascript
113113
var Float64Array = require( '@stdlib/array/float64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The function has the following additional parameters:
119119

120120
- **offset**: starting index.
121121

122-
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 sum the last three elements,
122+
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 sum the last three elements,
123123

124124
```javascript
125125
var Float64Array = require( '@stdlib/array/float64' );

0 commit comments

Comments
 (0)