m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
255 B

6 months ago
  1. from sympy.core.sympify import sympify
  2. def aseries(expr, x=None, n=6, bound=0, hir=False):
  3. """
  4. See the docstring of Expr.aseries() for complete details of this wrapper.
  5. """
  6. expr = sympify(expr)
  7. return expr.aseries(x, n, bound, hir)