Skip to content

Commit c1a30df

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: 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 0c5e3a5 commit c1a30df

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
either 'row-major' or 'column-major'.
2020

2121
side: string
22-
Specifies whether `op( A )` multiplies `B` from the left or right.
22+
Specifies whether `op( A )` appears on the left or right of `X`.
2323

2424
uplo: string
2525
Specifies whether `A` is an upper or lower triangular matrix.
2626

2727
transa: string
28-
Specifies whether `A` should be transposed, conjugate-transposed, or
29-
not transposed.
28+
Specifies whether `op( A )` should be transposed, conjugate-transposed,
29+
or not transposed.
3030

3131
diag: string
3232
Specifies whether `A` has a unit diagonal.
@@ -86,14 +86,14 @@
8686
Parameters
8787
----------
8888
side: string
89-
Specifies whether `op( A )` multiplies `B` from the left or right.
89+
Specifies whether `op( A )` appears on the left or right of `X`.
9090

9191
uplo: string
9292
Specifies whether `A` is an upper or lower triangular matrix.
9393

9494
transa: string
95-
Specifies whether `A` should be transposed, conjugate-transposed, or
96-
not transposed.
95+
Specifies whether `op( A )` should be transposed, conjugate-transposed,
96+
or not transposed.
9797

9898
diag: string
9999
Specifies whether `A` has a unit diagonal.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ interface Routine {
3232
* @param order - storage layout of `A` and `B`
3333
* @param side - specifies whether `op( A )` appears on the left or right of `X`
3434
* @param uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
35-
* @param transa - specifies the form of `op( A )` to be used in matrix multiplication
35+
* @param transa - specifies whether `op( A )` should be transposed, conjugate-transposed, or not transposed
3636
* @param diag - specifies whether or not `A` is unit triangular
3737
* @param M - number of rows in `B`
3838
* @param N - number of columns in `B`
@@ -59,7 +59,7 @@ interface Routine {
5959
*
6060
* @param side - specifies whether `op( A )` appears on the left or right of `X`
6161
* @param uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
62-
* @param transa - specifies the form of `op( A )` to be used in matrix multiplication
62+
* @param transa - specifies whether `op( A )` should be transposed, conjugate-transposed, or not transposed
6363
* @param diag - specifies whether or not `A` is unit triangular
6464
* @param M - number of rows in `B`
6565
* @param N - number of columns in `B`
@@ -92,7 +92,7 @@ interface Routine {
9292
* @param order - storage layout of `A` and `B`
9393
* @param side - specifies whether `op( A )` appears on the left or right of `X`
9494
* @param uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
95-
* @param transa - specifies the form of `op( A )` to be used in matrix multiplication
95+
* @param transa - specifies whether `op( A )` should be transposed, conjugate-transposed, or not transposed
9696
* @param diag - specifies whether or not `A` is unit triangular
9797
* @param M - number of rows in `B`
9898
* @param N - number of columns in `B`

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function zeros( M, N, X, strideX1, strideX2, offsetX ) { // TODO: consider movin
9898
* @private
9999
* @param {string} side - specifies whether `op( A )` appears on the left or right of `X`
100100
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
101-
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
101+
* @param {string} transa - specifies whether `op( A )` should be transposed, conjugate-transposed, or not transposed
102102
* @param {string} diag - specifies whether or not `A` is unit triangular
103103
* @param {NonNegativeInteger} M - number of rows in `B`
104104
* @param {NonNegativeInteger} N - number of columns in `B`

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var base = require( './base.js' );
3535
*
3636
* @param {string} side - specifies whether `op( A )` appears on the left or right of `X`
3737
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
38-
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
38+
* @param {string} transa - specifies whether `op( A )` should be transposed, conjugate-transposed, or not transposed
3939
* @param {string} diag - specifies whether or not `A` is unit triangular
4040
* @param {NonNegativeInteger} M - number of rows in `B`
4141
* @param {NonNegativeInteger} N - number of columns in `B`

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var base = require( './base.js' );
3939
* @param {string} order - storage layout of `A` and `B`
4040
* @param {string} side - specifies whether `op( A )` appears on the left or right of `X`
4141
* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` is supplied
42-
* @param {string} transa - specifies the form of `op( A )` to be used in matrix multiplication
42+
* @param {string} transa - specifies whether `op( A )` should be transposed, conjugate-transposed, or not transposed
4343
* @param {string} diag - specifies whether or not `A` is unit triangular
4444
* @param {NonNegativeInteger} M - number of rows in `B`
4545
* @param {NonNegativeInteger} N - number of columns in `B`

0 commit comments

Comments
 (0)