Skip to content

Commit 0ce9065

Browse files
committed
chore: update implementation
--- 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: 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent d03b0cb commit 0ce9065

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
either 'row-major' or 'column-major'.
1717

1818
uplo: string
19-
Specifies whether `A` is an upper or lower triangular matrix.
19+
Specifies whether `A` is an upper or lower banded triangular matrix.
2020

2121
trans: string
2222
Specifies whether `A` should be transposed, conjugate-transposed, or not
@@ -73,7 +73,7 @@
7373
Parameters
7474
----------
7575
uplo: string
76-
Specifies whether `A` is an upper or lower triangular matrix.
76+
Specifies whether `A` is an upper or lower banded triangular matrix.
7777

7878
trans: string
7979
Specifies whether `A` should be transposed, conjugate-transposed, or not

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ interface Routine {
5353
( order: Layout, uplo: MatrixTriangle, trans: TransposeOperation, diag: DiagonalType, N: number, K: number, A: Float32Array, LDA: number, x: Float32Array, strideX: number ): Float32Array;
5454

5555
/**
56-
* Solves one of the systems of equations `A*x = b` or `A^T*x = b` where `b` and `x` are `N` element vectors and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular band matrix, with ( `K` + 1 ) diagonals.
56+
* Solves one of the systems of equations `A*x = b` or `A^T*x = b`, using alternative indexing semantics and where `b` and `x` are `N` element vectors and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular band matrix, with ( `K` + 1 ) diagonals.
5757
*
5858
* @param uplo - specifies whether `A` is an upper or lower triangular matrix
5959
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed

0 commit comments

Comments
 (0)