图片解析应用
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.

12 lines
310 B

  1. """
  2. Stub module to expose DomainMatrix which has now moved to
  3. sympy.polys.matrices package. It should now be imported as:
  4. >>> from sympy.polys.matrices import DomainMatrix
  5. This module might be removed in future.
  6. """
  7. from sympy.polys.matrices.domainmatrix import DomainMatrix
  8. __all__ = ['DomainMatrix']