Skip to content

Commit 889f4d2

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
chore: update markdown
--- 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 07a101b commit 889f4d2

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/dtbmv

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# dtbmv
2222

23-
> Solve one of the systems of equations `A*x = b` or `A^T*x = b`.
23+
> Perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`.
2424
2525
<section class="usage">
2626

@@ -55,7 +55,7 @@ The function has the following parameters:
5555
- **A**: input matrix stored in linear memory as a [`Float64Array`][mdn-float64array].
5656
- **lda**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
5757
- **x**: input vector [`Float64Array`][mdn-float64array].
58-
- **sx**: `x` stride length.
58+
- **sx**: stride length for `x`.
5959

6060
The stride parameters determine how elements in the input arrays are accessed at runtime. For example, to iterate over the elements of `x` in reverse order,
6161

0 commit comments

Comments
 (0)