Skip to content

Commit ea8b8b3

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
chore: update repl.txt
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: passed - 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 bb332ad commit ea8b8b3

File tree

1 file changed

+10
-10
lines changed
  • lib/node_modules/@stdlib/blas/base/dsyr2k/docs

1 file changed

+10
-10
lines changed

lib/node_modules/@stdlib/blas/base/dsyr2k/docs/repl.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
{{alias}}( ord, uplo, trans, N, K, α, A, lda, B, ldb, β, C, ldc )
2+
{{alias}}( order, uplo, trans, N, K, α, A, lda, B, ldb, β, C, ldc )
33
Performs one of the symmetric rank `2K` operations
4-
`C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C`
4+
`C = α*A*B^T + C = α*B*A^T + β*C` or `C = α*A^T*B + α*B^T*A + β*C`
55
where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and
66
`A` and `B` are `N` by `K` matrices in the first case and `K` by `N`
77
matrices in the second case.
@@ -16,7 +16,7 @@
1616

1717
Parameters
1818
----------
19-
ord: string
19+
order: string
2020
Row-major (C-style) or column-major (Fortran-style) order.
2121

2222
uplo: string
@@ -69,17 +69,17 @@
6969
// Standard usage:
7070
> var A = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 3.0, 4.0 ] );
7171
> var B = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 3.0, 4.0 ] );
72-
> var C = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 0.0, 4.0 ] );
73-
> var ord = 'row-major';
72+
> var C = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 2.0, 4.0 ] );
73+
> var order = 'row-major';
7474
> var uplo = 'upper';
7575
> var trans = 'no-transpose';
76-
> {{alias}}( ord, uplo, trans, 2, 2, 1.0, A, 2, B, 2, 1.0, C, 2 )
77-
<Float64Array>[ 11.0, 24.0, 0.0, 54.0 ]
76+
> {{alias}}( order, uplo, trans, 2, 2, 1.0, A, 2, B, 2, 1.0, C, 2 )
77+
<Float64Array>[ 11.0, 24.0, 2.0, 54.0 ]
7878

7979

8080
{{alias}}.ndarray( uplo,trans,N,K,α,A,sa1,sa2,oa,B,sb1,sb2,ob,β,C,sc1,sc2,oc )
8181
Performs one of the symmetric rank `2K` operations
82-
`C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C`,
82+
`C = α*A*B^T + C = α*B*A^T + β*C` or `C = α*A^T*B + α*B^T*A + β*C`,
8383
using alternative indexing semantics and where `α` and `β` are scalars,
8484
`C` is an `N` by `N` symmetric matrix and A` and `B` are `N` by `K`
8585
matrices in the first case and `K` by `N` matrices in the second case.
@@ -154,11 +154,11 @@
154154
--------
155155
> var A = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 3.0, 4.0 ] );
156156
> var B = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 3.0, 4.0 ] );
157-
> var C = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 0.0, 4.0 ] );
157+
> var C = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 2.0, 4.0 ] );
158158
> var uplo = 'upper';
159159
> var trans = 'no-transpose';
160160
> {{alias}}.ndarray( uplo,trans,2,2,1.0,A,2,1,0,B,2,1,0,1.0,C,2,1,0 )
161-
<Float64Array>[ 11.0, 24.0, 0.0, 54.0 ]
161+
<Float64Array>[ 11.0, 24.0, 2.0, 54.0 ]
162162

163163
See Also
164164
--------

0 commit comments

Comments
 (0)