Skip to content

Commit 5a8c000

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 574725a commit 5a8c000

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/blas/base/zher

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/blas/base/zher/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# zher
2222

23-
> Perform the hermitian rank 1 operation `A = α*x*x**H + A`.
23+
> Perform the hermitian rank 1 operation `A = α*x*x^H + A`.
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var zher = require( '@stdlib/blas/base/zher' );
3232

3333
#### zher( order, uplo, N, α, x, strideX, A, LDA )
3434

35-
Performs the hermitian rank 1 operation `A = α*x*x**H + A`, where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
35+
Performs the hermitian rank 1 operation `A = α*x*x^H + A`, where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
3636

3737
```javascript
3838
var Complex128Array = require( '@stdlib/array/complex128' );
@@ -51,7 +51,7 @@ The function has the following parameters:
5151
- **N**: specifies the order of the matrix `A`.
5252
- **α**: scalar constant.
5353
- **x**: input vector [`Complex128Array`][@stdlib/array/complex128].
54-
- **strideX**: index increment for `x`.
54+
- **strideX**: stride length for `x`.
5555
- **A**: input matrix stored in linear memory as [`Complex128Array`][@stdlib/array/complex128].
5656
- **LDA**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
5757

@@ -89,7 +89,7 @@ zher( 'row-major', 'lower', x1.length, 2.0, x1, 1, A, 2 );
8989

9090
#### zher.ndarray( uplo, N, α, x, strideX, offsetX, A, strideA1, strideA2, offsetA )
9191

92-
Performs the hermitian rank 1 operation `A = α*x*x**H + A`, where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix using alternative indexing semantics.
92+
Performs the hermitian rank 1 operation `A = α*x*x^H + A`, where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix using alternative indexing semantics.
9393

9494
```javascript
9595
var Complex128Array = require( '@stdlib/array/complex128' );
@@ -257,7 +257,7 @@ TODO
257257

258258
[blas]: http://www.netlib.org/blas
259259

260-
[zher]: https://www.netlib.org/lapack/explore-html/dc/d82/group__her_gae92bde9f7f6f83c0edaa96f4f2bb2bc3.html
260+
[zher]: https://www.netlib.org/lapack/explore-html/dc/d82/group__her_gaf848c3e119d49365476615e0850bbe5b.html
261261

262262
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
263263

0 commit comments

Comments
 (0)