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"""This module contains least-squares algorithms.""" 

2from .least_squares import least_squares 

3from .lsq_linear import lsq_linear 

4 

5__all__ = ['least_squares', 'lsq_linear']