Skip to content

Commit 1fd44ca

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 0084fcc commit 1fd44ca

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 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
double AP[] = { 1.0, 2.0, 3.0, 1.0, 2.0, 1.0 };
197197
const double x[] = { 1.0, 2.0, 3.0 };
198198

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

226-
c_dspr_ndarray( CblasColMajor, CblasUpper, 3, 1.0, x, 1, AP, 1, 0 );
226+
c_dspr_ndarray( CblasRowMajor, CblasUpper, 3, 1.0, x, 1, AP, 1, 0 );
227227
```
228228
229229
The function accepts the following arguments:

0 commit comments

Comments
 (0)