Skip to content

Commit 939fff6

Browse files
committed
chore: clean-up
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: passed - 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 66ef6c5 commit 939fff6

File tree

1 file changed

+7
-7
lines changed
  • lib/node_modules/@stdlib/blas/base/icamax/docs

1 file changed

+7
-7
lines changed

lib/node_modules/@stdlib/blas/base/icamax/docs/repl.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

2-
{{alias}}( N, x, stride )
2+
{{alias}}( N, x, strideX )
33
Finds the index of the first element having maximum |Re(.)| + |Im(.)|.
44

5-
The `N` and `stride` parameters determine which elements in `x` are
5+
The `N` and `strideX` parameters determine which elements in `x` are
66
accessed at runtime.
77

88
Indexing is relative to the first index. To introduce an offset, use typed
@@ -18,7 +18,7 @@
1818
x: Complex64Array
1919
Input array.
2020

21-
stride: integer
21+
strideX: integer
2222
Index increment for `x`.
2323

2424
Returns
@@ -33,7 +33,7 @@
3333
> var y = {{alias}}( x.length, x, 1 )
3434
1
3535

36-
// Using `N` and `stride` parameters:
36+
// Using `N` and `strideX` parameters:
3737
> x = new {{alias:@stdlib/array/complex64}}( [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0 ] );
3838
> y = {{alias}}( 2, x, 2 )
3939
1
@@ -45,8 +45,8 @@
4545
1
4646

4747

48-
{{alias}}.ndarray( N, x, stride, offsetX )
49-
Finds the index of the first element having the maximum absolute value using
48+
{{alias}}.ndarray( N, x, strideX, offsetX )
49+
Finds the index of the first element having maximum |Re(.)| + |Im(.)| using
5050
alternative indexing semantics.
5151

5252
While typed array views mandate a view offset based on the underlying
@@ -61,7 +61,7 @@
6161
x: Complex64Array
6262
Input array.
6363

64-
stride: integer
64+
strideX: integer
6565
Index increment for `x`.
6666

6767
offsetX: integer

0 commit comments

Comments
 (0)