You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dsyr2k/README.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# dsyr2k
22
22
23
-
> Perform one of the symmetric rank `2K` operations `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
23
+
> Perform one of the symmetric rank `2K` operations `C = α*A*B^T + C = α*B*A^T + β*C` or `C = α*A^T*B + α*B^T*A + β*C`.
24
24
25
25
<sectionclass="usage">
26
26
@@ -30,25 +30,25 @@ limitations under the License.
30
30
var dsyr2k =require( '@stdlib/blas/base/dsyr2k' );
31
31
```
32
32
33
-
#### dsyr2k( ord, uplo, trans, N, K, α, A, lda, B, ldb, β, C, ldc )
33
+
#### dsyr2k( order, uplo, trans, N, K, α, A, lda, B, ldb, β, C, ldc )
34
34
35
-
Performs one of the symmetric rank `2K` operations `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
35
+
Performs one of the symmetric rank `2K` operations `C = α*A*B^T + C = α*B*A^T + β*C` or `C = α*A^T*B + α*B^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
Performs one of the symmetric rank `2K` operations `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C`, using alternative indexing semantics and where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
83
+
Performs one of the symmetric rank `2K` operations `C = α*A*B^T + C = α*B*A^T + β*C` or `C = α*A^T*B + α*B^T*A + β*C`, using alternative indexing semantics and where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` and `B` are `N` by `K` matrices in the first case and `K` by `N` matrices in the second case.
0 commit comments