有PDL的信号处理模块吗?

发布于 2024-12-13 11:56:23 字数 155 浏览 7 评论 0原文

Perl数据语言是否有类似于Matlab信号处理工具箱?我知道 PDL::FFT(W),但找不到任何用于滤波器构造或统计属性估计的函数。

Is there a module for the Perl Data Language that is similar to the Matlab signal processing toolbox? I'm aware of PDL::FFT(W), but can't find any functions for filter construction or estimation of statistical properties.

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

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

发布评论

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

评论(3

提笔落墨 2024-12-20 11:56:23

唉,不。虽然您可以通过自己的卷积、叉积等组合来实现与 Matlab 信号处理工具箱相同的目标,但没有人使用 PDL 编写全面的信号处理工具包。 PDL 最初是 IDL 的竞争对手,因此其最强的绑定集中在图像处理上。

如果您正在考虑制作自己的工具箱(这太棒了!),我建议您使用 PDL::TimeSeries。

Alas, no. While it is likely that you can accomplish the same ends as Matlab's signal processing toolbox with your own combination of convolutions, cross products, etc, nobody has written a comprehensive signal processing toolkit with PDL. PDL started as a competitor to IDL, so its strongest bindings focus on image manipulation.

If you are considering making your own toolbox (which would be FANTASTIC!), I would suggest PDL::TimeSeries.

多孤肩上扛 2024-12-20 11:56:23

现在至少有 https://metacpan.org/pod/PDL::DSP: :Fir 用于有限脉冲响应滤波器内核。

There is now at least https://metacpan.org/pod/PDL::DSP::Fir for finite impulse response filter kernels.

甲如呢乙后呢 2024-12-20 11:56:23

PDL::Audio 有滤波器(包括 FIR 滤波器,又名卷积) 。我确信它远没有 Matlab 工具箱功能齐全,而且它有很多你可能不感兴趣的东西(毕竟它是为发出声音而设计的),但它至少可以做一些你想做的事情。想。

如果我制作这个模块,我会将其称为 PDL::DSP。

PDL::Audio has filters (including FIR filters, aka convolution). I'm sure it's nowhere near as full-featured as the Matlab toolbox, and it has lots of stuff you're probably not interested in (it's designed for making sound, after all), but it will do at least some of what you want.

If I were making this module, I'd call it PDL::DSP.

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