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"""Sub-package containing the matrix class and related functions. 

2 

3""" 

4from .defmatrix import * 

5 

6__all__ = defmatrix.__all__ 

7 

8from numpy._pytesttester import PytestTester 

9test = PytestTester(__name__) 

10del PytestTester