Skip to content

Commit 2d56c45

Browse files
committed
chore: update implementation
--- 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 d0cb799 commit 2d56c45

File tree

1 file changed

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

1 file changed

+7
-7
lines changed

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

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

2-
{{alias}}( order, uplo, N, α, x, strideX, y, strideY, LDA )
2+
{{alias}}( order, uplo, N, α, x, strideX, y, strideY, A, LDA )
33
Performs the hermitian rank 2 operation
44
`A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar,
55
`x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian
@@ -80,7 +80,7 @@
8080
<Complex64Array>[ 11.0, 0.0, 0.0, 0.0, 27.0, 2.0, 57.0, 0.0 ]
8181

8282

83-
{{alias}}.ndarray( uplo, N, α, x, strideX, offsetX, y, strideY, offsetY, A, sa1, sa2, offsetA )
83+
{{alias}}.ndarray( uplo, N, α, x, sx, ox, y, sy, oy, A, sa1, sa2, oa )
8484
Performs the hermitian rank 2 operation
8585
`A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar,
8686
`x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian
@@ -105,19 +105,19 @@
105105
x: Complex64Array
106106
First input array.
107107

108-
strideX: integer
108+
sx: integer
109109
Index increment for `x`.
110110

111-
offsetX: integer
111+
ox: integer
112112
Starting index for `x`.
113113

114114
y: Complex64Array
115115
Second input array.
116116

117-
strideY: integer
117+
sy: integer
118118
Index increment for `y`.
119119

120-
offsetY: integer
120+
oy: integer
121121
Starting index for `y`.
122122

123123
A: Complex64Array
@@ -129,7 +129,7 @@
129129
sa2: integer
130130
Stride of the second dimension of `A`.
131131

132-
offsetA: integer
132+
oa: integer
133133
Starting index for `A`.
134134

135135
Returns

0 commit comments

Comments
 (0)