Skip to content

Commit a6ae676

Browse files
Technici4ndkarrasch
authored andcommitted
Fix forgotten conj(alpha) in her2k documentation (#1480)
1 parent 7cc6098 commit a6ae676

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/blas.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2092,7 +2092,7 @@ end
20922092
her2k!(uplo, trans, alpha, A, B, beta, C)
20932093
20942094
Rank-2k update of the Hermitian matrix `C` as
2095-
`alpha*A*B' + alpha*B*A' + beta*C` or `alpha*A'*B + alpha*B'*A + beta*C`
2095+
`alpha*A*B' + alpha'*B*A' + beta*C` or `alpha*A'*B + alpha'*B'*A + beta*C`
20962096
according to [`trans`](@ref stdlib-blas-trans). The scalar `beta` has to be real.
20972097
Only the [`uplo`](@ref stdlib-blas-uplo) triangle of `C` is used. Return `C`.
20982098
"""
@@ -2101,8 +2101,8 @@ function her2k! end
21012101
"""
21022102
her2k(uplo, trans, alpha, A, B)
21032103
2104-
Return the [`uplo`](@ref stdlib-blas-uplo) triangle of `alpha*A*B' + alpha*B*A'`
2105-
or `alpha*A'*B + alpha*B'*A`, according to [`trans`](@ref stdlib-blas-trans).
2104+
Return the [`uplo`](@ref stdlib-blas-uplo) triangle of `alpha*A*B' + alpha'*B*A'`
2105+
or `alpha*A'*B + alpha'*B'*A`, according to [`trans`](@ref stdlib-blas-trans).
21062106
"""
21072107
her2k(uplo, trans, alpha, A, B)
21082108

0 commit comments

Comments
 (0)