在 matlab 中按积分因子进行上采样,无需应用任何滤波器

发布于 2024-11-28 15:30:26 字数 371 浏览 2 评论 0原文

重复:
Matlab 中的逐元素数组复制

如何通过积分对向量进行上采样因子而不对上采样数据应用任何过滤?

基本上我想将向量上采样三倍

[1 -1 -1 1 1 -1 ]

[1 1 1 -1 -1 -1 -1 -1 -1 1 1 1 1 1 1 -1 -1 -1 ]

Duplicate:
Element-wise array replication in Matlab

How do I upsample a vector by an integral factor without applying any filtering to the upsampled data?

Basically I e.g. want to upsample a vector three times from

[1 -1 -1 1 1 -1 ]

to:

[1 1 1 -1 -1 -1 -1 -1 -1 1 1 1 1 1 1 -1 -1 -1 ]

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

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

发布评论

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

评论(1

悲念泪 2024-12-05 15:30:26

好吧,我刚刚发现自己:

resample(samples, upsample_rate, 1, 0);

第四个参数告诉 resample 使用应用于上采样数据的滤波器的 0 个样本的加权和。这有效地使过滤器无效。

Okay, I just found out myself:

resample(samples, upsample_rate, 1, 0);

The fourth parameter tells resample to use a weighted sum of 0 samples for the filter it applies to the upsampled data. Which effectively nullifies the filter.

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