在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我刚刚发现自己:
第四个参数告诉 resample 使用应用于上采样数据的滤波器的 0 个样本的加权和。这有效地使过滤器无效。
Okay, I just found out myself:
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.