Generate uniform magnitude bins (all same value) @param count Number of bins @param magnitude Value for all bins @return Vector of float magnitudes
| 197 | /// @param magnitude Value for all bins |
| 198 | /// @return Vector of float magnitudes |
| 199 | inline vector<float> generateUniformBins(size count, float magnitude) { |
| 200 | return vector<float>(count, magnitude); |
| 201 | } |
| 202 | |
| 203 | // ============================================================================ |
| 204 | // Complex Signal Generators (for vocal detection testing) |
no outgoing calls
no test coverage detected