Skip to content

Commit 5f16c85

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
docs: update jsdoc
--- 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: 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 81127f3 commit 5f16c85

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ interface Routine {
3737
* @param M - number of rows in `B`
3838
* @param N - number of columns in `B`
3939
* @param alpha - scalar constant
40-
* @param A - input matrix `A`
40+
* @param A - first matrix
4141
* @param LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
42-
* @param B - input matrix `B`
42+
* @param B - second matrix
4343
* @param LDB - stride of the first dimension of `B` (a.k.a., leading dimension of the matrix `B`)
4444
* @returns `B`
4545
*
@@ -64,11 +64,11 @@ interface Routine {
6464
* @param M - number of rows in `B`
6565
* @param N - number of columns in `B`
6666
* @param alpha - scalar constant
67-
* @param A - input matrix `A`
67+
* @param A - first matrix
6868
* @param strideA1 - stride of the first dimension of `A`
6969
* @param strideA2 - stride of the second dimension of `A`
7070
* @param offsetA - starting index for `A`
71-
* @param B - input matrix `B`
71+
* @param B - second matrix
7272
* @param strideB1 - stride of the first dimension of `B`
7373
* @param strideB2 - stride of the second dimension of `B`
7474
* @param offsetB - starting index for `B`
@@ -97,9 +97,9 @@ interface Routine {
9797
* @param M - number of rows in `B`
9898
* @param N - number of columns in `B`
9999
* @param alpha - scalar constant
100-
* @param A - input matrix `A`
100+
* @param A - first matrix
101101
* @param LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
102-
* @param B - input matrix `B`
102+
* @param B - second matrix
103103
* @param LDB - stride of the first dimension of `B` (a.k.a., leading dimension of the matrix `B`)
104104
* @returns `B`
105105
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ function zeros( M, N, X, strideX1, strideX2, offsetX ) { // TODO: consider movin
102102
* @param {NonNegativeInteger} M - number of rows in `B`
103103
* @param {NonNegativeInteger} N - number of columns in `B`
104104
* @param {number} alpha - scalar constant
105-
* @param {Float64Array} A - input matrix `A`
105+
* @param {Float64Array} A - first matrix
106106
* @param {integer} strideA1 - stride of the first dimension of `A`
107107
* @param {integer} strideA2 - stride of the second dimension of `A`
108108
* @param {NonNegativeInteger} offsetA - starting index for `A`
109-
* @param {Float64Array} B - input matrix `B`
109+
* @param {Float64Array} B - second matrix
110110
* @param {integer} strideB1 - stride of the first dimension of `B`
111111
* @param {integer} strideB2 - stride of the second dimension of `B`
112112
* @param {NonNegativeInteger} offsetB - starting index for `B`

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ var base = require( './base.js' );
4545
* @param {NonNegativeInteger} M - number of rows in `B`
4646
* @param {NonNegativeInteger} N - number of columns in `B`
4747
* @param {number} alpha - scalar constant
48-
* @param {Float64Array} A - input matrix `A`
48+
* @param {Float64Array} A - first matrix
4949
* @param {NonNegativeInteger} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
50-
* @param {Float64Array} B - input matrix `B`
50+
* @param {Float64Array} B - second matrix
5151
* @param {NonNegativeInteger} LDB - stride of the first dimension of `B` (a.k.a., leading dimension of the matrix `B`)
5252
* @throws {TypeError} first argument must be a valid order
5353
* @throws {TypeError} second argument must be a valid side

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var base = require( './base.js' );
4040
* @param {NonNegativeInteger} M - number of rows in `B`
4141
* @param {NonNegativeInteger} N - number of columns in `B`
4242
* @param {number} alpha - scalar constant
43-
* @param {Float64Array} A - input matrix `A`
43+
* @param {Float64Array} A - first matrix
4444
* @param {integer} strideA1 - stride of the first dimension of `A`
4545
* @param {integer} strideA2 - stride of the second dimension of `A`
4646
* @param {NonNegativeInteger} offsetA - starting index for `A`

0 commit comments

Comments
 (0)