Skip to content

Commit d9f8238

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 5c7a853 commit d9f8238

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

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

2121
# dsyrk
2222

23-
> Perform one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
23+
> Perform one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C`.
2424
2525
<section class="usage">
2626

@@ -30,7 +30,7 @@ limitations under the License.
3030
var dsyrk = require( '@stdlib/blas/base/dsyrk' );
3131
```
3232

33-
#### dsyrk( ord, uplo, trans, N, K, α, A, lda, β, C, ldc )
33+
#### dsyrk( order, uplo, trans, N, K, α, A, lda, β, C, ldc )
3434

3535
Performs one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
3636

@@ -46,7 +46,7 @@ dsyrk( 'row-major', 'upper', 'no-transpose', 3, 3, 1.0, A, 3, 1.0, C, 3 );
4646

4747
The function has the following parameters:
4848

49-
- **ord**: storage layout.
49+
- **order**: storage layout.
5050
- **uplo**: specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied.
5151
- **trans**: specifies whether `C` should be transposed, conjugate-transposed, or not transposed.
5252
- **N**: order of the matrix `C`.

0 commit comments

Comments
 (0)