Skip to content

Commit f48015e

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
chore: update markdown
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 8a71ed3 commit f48015e

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/blas/base/wasm/zscal

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/blas/base/wasm/zscal/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The function has the following parameters:
5454
- **N**: number of indexed elements.
5555
- **alpha**: scalar [`Complex128`][@stdlib/complex/float64/ctor] constant.
5656
- **x**: input [`Complex128Array`][@stdlib/array/complex128].
57-
- **strideX**: index increment for `x`.
57+
- **strideX**: stride length for `x`.
5858

5959
The `N` and stride parameters determine which elements in the input strided array are accessed at runtime. For example, to scale every other value in `x` by `alpha`,
6060

@@ -158,7 +158,7 @@ var mod = new zscal.Module( mem );
158158
mod.initializeSync();
159159
```
160160

161-
#### zscal.Module.prototype.main( N, zap, zxp, sx )
161+
#### zscal.Module.prototype.main( N, ap, xp, sx )
162162

163163
Scales values from `x` by `alpha` .
164164

@@ -222,11 +222,11 @@ console.log( reinterpretComplex64( view, 0 ) );
222222
The function has the following parameters:
223223

224224
- **N**: number of indexed elements.
225-
- **zap**: pointer (i.e., byte offset) to a scalar [`Complex128`][@stdlib/complex/float64/ctor] constant.
226-
- **zxp**: input [`Complex128Array`][@stdlib/array/complex128] pointer (i.e., byte offset).
227-
- **sx**: index increment for `x`.
225+
- **ap**: pointer (i.e., byte offset) to a scalar [`Complex128`][@stdlib/complex/float64/ctor] constant.
226+
- **xp**: input [`Complex128Array`][@stdlib/array/complex128] pointer (i.e., byte offset).
227+
- **sx**: stride length for `x`.
228228

229-
#### zscal.Module.prototype.ndarray( N, zap, zxp, sx, ox )
229+
#### zscal.Module.prototype.ndarray( N, ap, xp, sx, ox )
230230

231231
Scales values from `x` by `alpha` using alternative indexing semantics.
232232

0 commit comments

Comments
 (0)