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"Iterative Solvers for Sparse Linear Systems" 

2 

3#from info import __doc__ 

4from .iterative import * 

5from .minres import minres 

6from .lgmres import lgmres 

7from .lsqr import lsqr 

8from .lsmr import lsmr 

9from ._gcrotmk import gcrotmk 

10 

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

12 

13from scipy._lib._testutils import PytestTester 

14test = PytestTester(__name__) 

15del PytestTester