Spaces:
Running
Running
File size: 310 Bytes
6a86ad5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"""
Stub module to expose DomainMatrix which has now moved to
sympy.polys.matrices package. It should now be imported as:
>>> from sympy.polys.matrices import DomainMatrix
This module might be removed in future.
"""
from sympy.polys.matrices.domainmatrix import DomainMatrix
__all__ = ['DomainMatrix']
|