// reference implementation of an FIR template <typename SampleType, typename NumericType> static void reference (const NumericType* firCoefficients, size_t numCoefficients, const SampleType* input, SampleType* output, size_t n) noexcept { if (numCoefficients == 0) {//输出清零 zeromem (output, sizeof (SampleType) * n); return; } //分配内存 HeapBlock<SampleType> scratchBuffer (numCoefficients #if JUCE_USE_SIMD + (SIMDRegister<NumericType>::SIMDRegisterSize / sizeof (SampleType)) #endif ); #if JUCE_USE_SIMD SampleType* buffer = reinterpret_cast<SampleType*> (SIMDRegister<NumericType>::getNextSIMDAlignedPtr (reinterpret_cast<NumericType*> (scratchBuffer.getData()))); #else SampleType* buffer = scratchBuffer.getData(); #endif //内存清零 zeromem (buffer, sizeof (SampleType) * numCoefficients); for (size_t i = 0; i < n; ++i) { //滑动,将数据向右移动一个位置 for (size_t j = (numCoefficients - 1); j >= 1; --j) buffer[j] = buffer[j-1]; buffer[0] = input[i];//最新采集的数据 SampleType sum (0);//累加和清零 //重新相加 for (size_t j = 0; j < numCoefficients; ++j) sum += buffer[j] * firCoefficients[j]; output[i] = sum;//更新输出 } }
fir滤波器
原创
©著作权归作者所有:来自51CTO博客作者Chinayu2014的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:获取控制台程序的返回值
下一篇:可执行文件删除自身
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
FIR滤波器算法
FIR(Finite Impulse Response)滤波器是一种基于有限长输入信号的数字滤波器,常用于去除数字信号中的噪声和干扰。窗函数法
算法 语音识别 深度学习 卷积 最小二乘法