SymPy:如何从表达式中获取值

发布于 2025-01-07 01:40:04 字数 291 浏览 0 评论 0原文

我正在尝试编写一个简单的 SymPy 函数。

a = Wild('a')
b = Wild('b')
p = Wild('p')
q = Wild('q')
...

if (U).match(b/(a+s)):
    return b*exp(-a*t)

假设U = 3/(7+s)。我希望结果为 3*exp(-7*t),但它只返回 b*exp(-a*t)

有没有办法获取这些值并将它们分配给a和b?

I am trying to write a simple SymPy function.

a = Wild('a')
b = Wild('b')
p = Wild('p')
q = Wild('q')
...

if (U).match(b/(a+s)):
    return b*exp(-a*t)

Lets say that U = 3/(7+s). I would like my result to be 3*exp(-7*t), but it just returns b*exp(-a*t).

Is there a way to get those values and assign them to a and b?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陪我终i 2025-01-14 01:40:04

当然。首先,设置系统:

>>> from sympy import var, Wild, exp
>>> s = var("s")
>>> t = var("t")
>>> a = Wild("a")
>>> b = Wild("b")
>>> U = 3/(7+s)

.match 方法返回一个字典:

>>> U.match(b/(a+s))
{b_: 3, a_: 7}
>>> m = U.match(b/(a+s))

然后可以将其作为参数传递给 .subs

>>> target = b*exp(-a*t)
>>> target
b_*exp(-t*a_)
>>> target.subs(m)
3*exp(-7*t)

Sure. First, set up the system:

>>> from sympy import var, Wild, exp
>>> s = var("s")
>>> t = var("t")
>>> a = Wild("a")
>>> b = Wild("b")
>>> U = 3/(7+s)

The .match method returns a dictionary:

>>> U.match(b/(a+s))
{b_: 3, a_: 7}
>>> m = U.match(b/(a+s))

which can then be passed as an argument to .subs:

>>> target = b*exp(-a*t)
>>> target
b_*exp(-t*a_)
>>> target.subs(m)
3*exp(-7*t)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文