@@ -147,7 +147,7 @@ var mod = new daxpy.Module( mem );
147
147
mod .initializeSync ();
148
148
```
149
149
150
- #### mod. main( N, alpha, xptr, strideX, yptr, strideY )
150
+ #### daxpy.Module.prototype. main( N, α, xp, sx, yp, sy )
151
151
152
152
Multiplies a vector ` x ` by a constant and adds the result to ` y ` .
153
153
@@ -201,13 +201,13 @@ console.log( view );
201
201
The function has the following parameters:
202
202
203
203
- ** N** : number of indexed elements.
204
- - ** alpha ** : scalar constant.
205
- - ** xptr ** : input [ ` Float64Array ` ] [ @stdlib/array/float64 ] pointer (i.e., byte offset).
206
- - ** strideX ** : index increment for ` x ` .
207
- - ** yptr ** : input [ ` Float64Array ` ] [ @stdlib/array/float64 ] pointer (i.e., byte offset).
208
- - ** strideY ** : index increment for ` y ` .
204
+ - ** α ** : scalar constant.
205
+ - ** xp ** : input [ ` Float64Array ` ] [ @stdlib/array/float64 ] pointer (i.e., byte offset).
206
+ - ** sx ** : index increment for ` x ` .
207
+ - ** yp ** : input [ ` Float64Array ` ] [ @stdlib/array/float64 ] pointer (i.e., byte offset).
208
+ - ** sy ** : index increment for ` y ` .
209
209
210
- #### mod. ndarray( N, alpha, xptr, strideX, offsetX, yptr, strideY, offsetY )
210
+ #### daxpy.Module.prototype. ndarray( N, α, xp, sx, ox, yp, sy, oy )
211
211
212
212
Multiplies a vector ` x ` by a constant and adds the result to ` y ` using alternative indexing semantics.
213
213
@@ -260,8 +260,8 @@ console.log( view );
260
260
261
261
The function has the following additional parameters:
262
262
263
- - ** offsetX ** : starting index for ` x ` .
264
- - ** offsetY ** : starting index for ` y ` .
263
+ - ** ox ** : starting index for ` x ` .
264
+ - ** oy ** : starting index for ` y ` .
265
265
266
266
</section >
267
267
0 commit comments