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: src/lobpcg.jl
+40-8Lines changed: 40 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -653,18 +653,18 @@ end
653
653
"""
654
654
The Locally Optimal Block Preconditioned Conjugate Gradient Method (LOBPCG)
655
655
656
-
Finds the k extremal eigenvalues and their corresponding eigenvectors satisfying `AX = λBX` returning `λ` and `X`, using `X` as an initial guess, where `k = size(X,2)`. The input `X` is overwritten with the solution.
656
+
Finds the `nev` extremal eigenvalues and their corresponding eigenvectors satisfying `AX = λBX`.
657
657
658
-
`A` and `B` may be generic types but `Base.A_mul_B!(C, AorB, X)` and `AorB * X` must be defined for vectors and strided matrices `X` and `C`.
658
+
`A` and `B` may be generic types but `Base.A_mul_B!(C, AorB, X)` must be defined for vectors and strided matrices `X` and `C`. `size(A, i::Int)` and `eltype(A)` must also be defined for `A`.
0 commit comments