Traktor/myenv/Lib/site-packages/sympy/series/aseries.py

11 lines
255 B
Python
Raw Normal View History

2024-05-26 05:12:46 +02:00
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)