__init__.py 397 B

123456789101112131415
  1. """
  2. sympy.polys.matrices package.
  3. The main export from this package is the DomainMatrix class which is a
  4. lower-level implementation of matrices based on the polys Domains. This
  5. implementation is typically a lot faster than SymPy's standard Matrix class
  6. but is a work in progress and is still experimental.
  7. """
  8. from .domainmatrix import DomainMatrix, DM
  9. __all__ = [
  10. 'DomainMatrix', 'DM',
  11. ]