Spaces:
Sleeping
Sleeping
File size: 255 Bytes
6a86ad5 |
1 2 3 4 5 6 7 8 9 10 11 |
from sympy.core.sympify import sympify
def aseries(expr, x=None, n=6, bound=0, hir=False):
"""
See the docstring of Expr.aseries() for complete details of this wrapper.
"""
expr = sympify(expr)
return expr.aseries(x, n, bound, hir)
|