Python中两个函数的卷积

发布于 2024-07-30 04:23:01 字数 176 浏览 8 评论 0原文

我必须在 Python 中实现两个函数的卷积,但 SciPy/Numpy 似乎仅具有用于两个数组卷积的函数。

在我尝试使用卷积的正则积分表达式来实现这一点之前,我想问是否有人知道执行这些操作的现有模块。

如果做不到这一点,SciPy 提供的几种集成中哪一种最适合此目的?

谢谢!

I will have to implement a convolution of two functions in Python, but SciPy/Numpy appear to have functions only for the convolution of two arrays.

Before I try to implement this by using the the regular integration expression of convolution, I would like to ask if someone knows of an already available module that performs these operations.

Failing that, which of the several kinds of integration that SciPy provides is the best suited for this?

Thanks!

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

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

发布评论

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

评论(2

一曲琵琶半遮面シ 2024-08-06 04:23:01

是的,SciPy/Numpy 最关心的是数组。

如果您可以容忍近似解,并且您的函数仅在一定范围的值(不是无限)上运行,您可以用这些值填充数组并对数组进行卷积。

如果您想要更“正确”的微积分知识,您可能需要一个强大的求解器(mathmatica、maple...)

Yes, SciPy/Numpy is mostly concerned about arrays.

If you can tolerate an approximate solution, and your functions only operate over a range of value (not infinite) you can fill an array with the values and convolve the arrays.

If you want something more "correct" calculus-wise you would probably need a powerful solver (mathmatica, maple...)

梦情居士 2024-08-06 04:23:01

如果您逐点需要,您可以尝试实现离散卷积

You could try to implement the Discrete Convolution if you need it point by point.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文