Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2Locally Optimal Block Preconditioned Conjugate Gradient Method (LOBPCG) 

3 

4LOBPCG is a preconditioned eigensolver for large symmetric positive definite 

5(SPD) generalized eigenproblems. 

6 

7Call the function lobpcg - see help for lobpcg.lobpcg. 

8 

9""" 

10from .lobpcg import * 

11 

12__all__ = [s for s in dir() if not s.startswith('_')] 

13 

14from scipy._lib._testutils import PytestTester 

15test = PytestTester(__name__) 

16del PytestTester