m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
397 B

6 months ago
  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. ]