| 150 | } |
| 151 | |
| 152 | void MFCC::ConvertToLogarithmicScale(std::vector<float>& melEnergies) |
| 153 | { |
| 154 | for (float& melEnergy : melEnergies) |
| 155 | { |
| 156 | melEnergy = logf(melEnergy); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | void MFCC::ConvertToPowerSpectrum() |
| 161 | { |
no outgoing calls
no test coverage detected