M lazy-lock.json M lua/custom/configs/lspconfig.lua M lua/custom/init.lua A lua/custom/journal.lua A nvim_venv/bin/Activate.ps1 A nvim_venv/bin/activate A nvim_venv/bin/activate.csh A nvim_venv/bin/activate.fish
11 lines
255 B
Python
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)
|