Files
ytts/venv/lib/python3.11/site-packages/sympy/series/aseries.py
2025-04-02 21:44:17 -07:00

11 lines
255 B
Python

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)