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

Method cpx2Float

shared/StandardFFTProcessor.cpp:192–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190}
191
192void StandardFFTProcessor::cpx2Float(const std::vector<Cpx>& inCpx, std::vector<FftDecimal>& outFloat){
193 for(int i=0; i<m_fftSize; ++i){
194 outFloat[(size_t)i] = inCpx[(size_t)i].real();
195 }
196}
197
198void StandardFFTProcessor::normalise(std::vector<Cpx>& cmpxInOut){
199

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected