We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
elseif
else
1 parent 34fb1d8 commit 35328caCopy full SHA for 35328ca
stdlib/LinearAlgebra/src/symmetric.jl
@@ -442,7 +442,7 @@ function dot(A::Symmetric, B::Symmetric)
442
end
443
dotprod += dot(A[j, j], B[j, j])
444
445
- elseif A.uplo == 'L' && B.uplo == 'U'
+ else
446
for j in 1:n
447
448
for i in (j + 1):n
@@ -481,7 +481,7 @@ function dot(A::Hermitian, B::Hermitian)
481
482
483
484
485
486
487
0 commit comments