Skip to content

Commit 99fff2d

Browse files
committed
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 057bc74 commit 99fff2d

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/sspr

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Performs the symmetric rank 1 operation `A = α*x*x^T + A` where `α` is a scala
196196
float AP[] = { 1.0f, 2.0f, 3.0f, 1.0f, 2.0f, 1.0f };
197197
const float x[] = { 1.0f, 2.0f, 3.0f };
198198

199-
c_sspr( CblasColMajor, CblasUpper, 3, 1.0f, x, 1, AP );
199+
c_sspr( CblasRowMajor, CblasUpper, 3, 1.0f, x, 1, AP );
200200
```
201201
202202
The function accepts the following arguments:
@@ -223,13 +223,13 @@ Performs the symmetric rank 1 operation `A = α*x*x^T + A` where `α` is a scala
223223
float AP[] = { 1.0f, 2.0f, 3.0f, 1.0f, 2.0f, 1.0f };
224224
const float x[] = { 1.0f, 2.0f, 3.0f };
225225

226-
c_sspr_ndarray( CblasColMajor, CblasUpper, 3, 1.0f, x, 1, AP, 1, 0 );
226+
c_sspr_ndarray( CblasRowMajor, CblasUpper, 3, 1.0f, x, 1, AP, 1, 0 );
227227
```
228228
229229
The function accepts the following arguments:
230230
231231
- **order**: `[in] CBLAS_LAYOUT` storage layout.
232-
- **uplo**: `[in] CBLAS_UPLO` specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced.
232+
- **uplo**: `[in] CBLAS_UPLO` specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied.
233233
- **N**: `[in] CBLAS_INT` number of elements along each dimension of `A`.
234234
- **alpha**: `[in] float` scalar.
235235
- **X**: `[in] float*` input vector.

0 commit comments

Comments
 (0)