Skip to content

Commit 79d3656

Browse files
committed
docs: readme added
--- 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: passed - task: lint_package_json status: na - task: lint_repl_help status: na - 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 f95c0bc commit 79d3656

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

  • lib/node_modules/@stdlib/blas/base/cgbmv

lib/node_modules/@stdlib/blas/base/cgbmv/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,8 @@ cgbmv( 'row-major', 'no-transpose', 3, 3, 1, 1, alpha, A, 3, x1, 1, beta, y1, 1
106106
```
107107

108108
<!-- lint disable maximum-heading-length -->
109-
110109
#### cgbmv.ndarray( trans, M, N, KL, KU, α, A, sa1, sa2, oa, x, sx, ox, β, y, sy, oy )
111110

112-
<!-- lint enable maximum-heading-length -->
113-
114111
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` or `y = α*A^H*x + β*y` using alternative indexing semantics, where `α` and `β` are complex scalars, `x` and `y` are complex vectors, and `A` is an `M` by `N` complex band matrix with `KL` sub-diagonals and `KU` super-diagonals.
115112

116113
```javascript
@@ -199,7 +196,7 @@ cgbmv( 'row-major', 'no-transpose', M, N, KL, KU, alpha, A, (KL+KU+1), x, 1, bet
199196
// Print the results:
200197
logEach( '(%s)', x );
201198

202-
cgbmv.ndarray( 'no-transpose', M, N, alpha, A, 1, (KL+KU+1), 0, x, 1, 0, beta, y, 1, 0 ); // eslint-disable-line max-params, max-len
199+
cgbmv.ndarray( 'no-transpose', M, N, KL, KU, alpha, A, 1, (KL+KU+1), 0, x, 1, 0, beta, y, 1, 0 ); // eslint-disable-line max-params, max-len
203200

204201
// Print the results:
205202
logEach( '(%s)', x );

0 commit comments

Comments
 (0)