MCPcopy Create free account
hub / github.com/andrewreeman/SpectralSuite / applyWindow

Method applyWindow

shared/StandardFFTProcessor.cpp:179–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

177
178
179void StandardFFTProcessor::applyWindow(std::vector<FftDecimal>& inOut){
180 for(int i=0; i<m_fftSize; ++i){
181 inOut[(size_t)i] *= m_window[(size_t)i];
182 }
183}
184
185void StandardFFTProcessor::float2Cpx(const std::vector<FftDecimal>& inFloat, std::vector<Cpx>& outCpx){
186 for(int i=0; i<m_fftSize; ++i){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected