Coverage for /usr/lib/python3/dist-packages/sympy/polys/matrices/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-14 15:55 +0200

1""" 

2 

3sympy.polys.matrices package. 

4 

5The main export from this package is the DomainMatrix class which is a 

6lower-level implementation of matrices based on the polys Domains. This 

7implementation is typically a lot faster than SymPy's standard Matrix class 

8but is a work in progress and is still experimental. 

9 

10""" 

11from .domainmatrix import DomainMatrix, DM 

12 

13__all__ = [ 

14 'DomainMatrix', 'DM', 

15]