概述
PDM编码的软件实现
PDM(Pulse-density_modulation)
// Encode samples into pulse-density modulation
// using a first-order sigma-delta modulator
// C/C++ 描述
// x[s]: signal array
// y[S]: output PDM array
// qe : running error
void PDM(double x[s], double y[s], double qe = 0,) // initial running error is zero
{
for(int n = 0, n < s, ++n)
{
if(x[n] >= qe)
y[n] = 1;
else
y[n] = -1;
qe = y[n] - x[n] + qe; // calculate the error to feedback
}
}
参考资料
Wikipedia-Pulse-density_modulation
最后
以上就是爱听歌朋友为你收集整理的PDM编码的软件实现PDM编码的软件实现的全部内容,希望文章能够帮你解决PDM编码的软件实现PDM编码的软件实现所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复