Hanning window // windowing Hann http://stackoverflow.com/questions/24696122/calculating-the-power-spectral-density for(i=0; i<windowsSize; i++){ multiplier =0.5*(1-cos(2*PI*i/(windowsSize-1))); value[i]*= multiplier; } Post Views: 496