Skip to content

Commit 9d5ea12

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: passed - task: lint_repl_help status: na - 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 2de7827 commit 9d5ea12

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { Layout, MatrixTriangle } from '@stdlib/types/blas';
2828
*/
2929
interface Routine {
3030
/**
31-
* 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.
31+
* 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.
3232
*
3333
* @param order - storage layout
3434
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
@@ -52,7 +52,7 @@ interface Routine {
5252
( order: Layout, uplo: MatrixTriangle, N: number, alpha: number, x: Complex64Array, strideX: number, A: Complex64Array, LDA: number ): Complex64Array;
5353

5454
/**
55-
* 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.
55+
* 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.
5656
*
5757
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
5858
* @param N - number of elements along each dimension of `A`
@@ -79,7 +79,7 @@ interface Routine {
7979
}
8080

8181
/**
82-
* 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.
82+
* 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.
8383
*
8484
* @param order - storage layout
8585
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.

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

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

3030
/**
31-
* 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.
31+
* 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.
3232
*
3333
* @private
3434
* @param {string} uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.

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

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

3434
/**
35-
* 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.
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
* @param {string} order - storage layout
3838
* @param {string} uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.

lib/node_modules/@stdlib/blas/base/cher/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* BLAS level 2 routine to perform 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.
22+
* BLAS level 2 routine to perform 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.
2323
*
2424
* @module @stdlib/blas/base/cher
2525
*

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

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

3030
/**
31-
* 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.
31+
* 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.
3232
*
3333
* @param {string} uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
3434
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`

lib/node_modules/@stdlib/blas/base/cher/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/blas/base/cher",
33
"version": "0.0.0",
4-
"description": "Perform 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.",
4+
"description": "Perform 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.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)