我需要用 C# 中的 yin 算法计算基频。
我有一个数组(data[44100]),其中包含 1 秒长的 250Hz 正弦波的幅度。这是我的代码:
int t = 0; //starting point of the window
int w = data.Length / 25; //the end of the window so the size of the window is 40msec
int rmax = 0; //the maximum of the correlation function
int period = 0; //the period of the sinus
for (int tau = 0; tau < w; tau++)
{
int r = 0;
for (int j = t + 1; j < (t + w); j++)
{
r = r + (data[j] * data[j + tau]);
}
if (r > rmax)
{
rmax = r;
period = tau;
}
}
float time = (float)period/44100;
float freq = 1.0f / time;
System.Console.WriteLine(freq);
我应该得到 250 的频率,但出了点问题。数组中的值很好,我在 excel 中检查了它,期间应该是这样。有人可以帮忙吗?