Skip to content

Commit 16fec00

Browse files
committed
chore: minor 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: passed - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 3b57772 commit 16fec00

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

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

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

22
{{alias}}( order, uplo, N, α, x, strideX, y, strideY, A, LDA )
33
Performs the hermitian rank 2 operation
4-
`A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar,
4+
`A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar,
55
`x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian
66
matrix.
77

@@ -82,7 +82,7 @@
8282

8383
{{alias}}.ndarray( uplo, N, α, x, sx, ox, y, sy, oy, A, sa1, sa2, oa )
8484
Performs the hermitian rank 2 operation
85-
`A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar,
85+
`A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar,
8686
`x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian
8787
matrix using alternative indexing semantics.
8888

lib/node_modules/@stdlib/blas/base/cher2/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { Layout, MatrixTriangle } from '@stdlib/types/blas';
2929
*/
3030
interface Routine {
3131
/**
32-
* Performs the hermitian rank 2 operation `A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
32+
* Performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
3333
*
3434
* @param order - storage layout
3535
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
@@ -58,7 +58,7 @@ interface Routine {
5858
( order: Layout, uplo: MatrixTriangle, N: number, alpha: Complex64, x: Complex64Array, strideX: number, y: Complex64Array, strideY: number, A: Complex64Array, LDA: number ): Complex64Array;
5959

6060
/**
61-
* Performs the hermitian rank 2 operation `A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
61+
* Performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
6262
*
6363
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
6464
* @param N - number of elements along each dimension of `A`
@@ -91,7 +91,7 @@ interface Routine {
9191
}
9292

9393
/**
94-
* Performs the hermitian rank 2 operation `A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
94+
* Performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
9595
*
9696
* @param order - storage layout
9797
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.

lib/node_modules/@stdlib/blas/base/cher2/lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var f32 = require( '@stdlib/number/float64/base/to-float32' );
3030
// MAIN //
3131

3232
/**
33-
* Performs the hermitian rank 2 operation `A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
33+
* Performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
3434
*
3535
* @private
3636
* @param {string} uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.

lib/node_modules/@stdlib/blas/base/cher2/lib/cher2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var ndarray = require( './ndarray.js' );
3434
// MAIN //
3535

3636
/**
37-
* Performs the hermitian rank 1 operation `A = alpha*x*x**H + A`, where `alpha` is a real scalar, `X` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
37+
* Performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
3838
*
3939
* @param {string} order - storage layout
4040
* @param {string} uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.

lib/node_modules/@stdlib/blas/base/cher2/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var base = require( './base.js' );
3030
// MAIN //
3131

3232
/**
33-
* Performs the hermitian rank 2 operation `A = alpha*x*y**H + conjg( alpha )*y*x**H + A`, where `alpha` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
33+
* Performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
3434
*
3535
* @private
3636
* @param {string} uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.

0 commit comments

Comments
 (0)