-1

我是这篇文章的新手。如果我在提问的方式上犯了任何错误,请告诉我。

当人们可以通过这些链接解释我在寻找什么时,我的问题可以清楚地理解。

https://www.dropbox.com/s/5nhmxqgveytl0ba/Comb%20FIR%20Filter%20Explanation.jpg

                 (And)

https://www.dropbox.com/s/5nhmxqgveytl0ba/Comb%20FIR%20Filter%20Explanation.jpg

重点将是“我如何创建这样一个取决于输入周期和滤波器采样频率‘Fs’的‘可变 FIFO 缓冲区’?

如果有人对这样的问题有任何想法或想法,那么我将很高兴知道,这将对我在这里的项目有很大帮助。

真诚的

4

1 回答 1

0

Maybe I don't fully understand what it is you're looking for here but I think you already have all the information that you need.

Fs = 1000; %% or whatever your sampling rate is to begin with.
Order = 3; %% Or whatever order you decide to work with.
Buffer_length = (Order/2)*Fs; % this will be the amount of data in each buffer

If you're looking for someone to give you anything more than this you're going to have to provide additional information and show what you're tried to do so far.

于 2012-07-17T12:58:10.033 回答