gpt4 book ai didi

python - 有没有一种简单的方法可以通过 sympy 获取某个域中函数的所有不连续性?

转载 作者:太空狗 更新时间:2023-10-30 01:13:51 26 4
gpt4 key购买 nike

给定一个 sympy 表达式,有没有办法找到给定区间内的所有不连续点?例如,给定从 -2 到 2 的 1/(x^2-1),它将返回 -1 和 1。它不必是符号的。数值解实际上可能更适合我的目的。

最佳答案

为此,您可以使用 singularities 模块。

In [ ]: from sympy import *  
In [ ]: init_printing()
In [ ]: x = symbols('x')
In [ ]: singularities(1/(x**2 - 1), x)
Out[ ]: (-1, 1) # A tuple of SymPy objects

引用:http://docs.sympy.org/latest/modules/calculus/index.html#sympy.calculus.singularities.singularities

关于python - 有没有一种简单的方法可以通过 sympy 获取某个域中函数的所有不连续性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34423809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com