Skip to content

Commit 64f9d94

Browse files
committed
docs: update headings
1 parent 849e5da commit 64f9d94

File tree

1 file changed

+9
-9
lines changed
  • lib/node_modules/@stdlib/blas/base/daxpy-wasm

1 file changed

+9
-9
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ var mod = new daxpy.Module( mem );
147147
mod.initializeSync();
148148
```
149149

150-
#### mod.main( N, alpha, xptr, strideX, yptr, strideY )
150+
#### daxpy.Module.prototype.main( N, α, xp, sx, yp, sy )
151151

152152
Multiplies a vector `x` by a constant and adds the result to `y`.
153153

@@ -201,13 +201,13 @@ console.log( view );
201201
The function has the following parameters:
202202

203203
- **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`.
209209

210-
#### mod.ndarray( N, alpha, xptr, strideX, offsetX, yptr, strideY, offsetY )
210+
#### daxpy.Module.prototype.ndarray( N, α, xp, sx, ox, yp, sy, oy )
211211

212212
Multiplies a vector `x` by a constant and adds the result to `y` using alternative indexing semantics.
213213

@@ -260,8 +260,8 @@ console.log( view );
260260

261261
The function has the following additional parameters:
262262

263-
- **offsetX**: starting index for `x`.
264-
- **offsetY**: starting index for `y`.
263+
- **ox**: starting index for `x`.
264+
- **oy**: starting index for `y`.
265265

266266
</section>
267267

0 commit comments

Comments
 (0)