Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试了各种搜索,但找不到一个好的谷歌字符串来显示正确的结果。
我有一个形式的产品
y = x*f(x)
其中 f 是未知的 x 的函数。我希望 sympy 将 y 与 x 区分开来。有谁知道我该怎么做?
怎么样:
>>> x = sympy.Symbol("x") >>> f = sympy.Function("f") >>> y = x * f(x) >>> y x*f(x) >>> y.diff(x) x*Derivative(f(x), x) + f(x)