| 190 | } |
| 191 | |
| 192 | void 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 | |
| 198 | void StandardFFTProcessor::normalise(std::vector<Cpx>& cmpxInOut){ |
| 199 |
nothing calls this directly
no outgoing calls
no test coverage detected