20 lines
381 B
C++
Raw Normal View History

2015-04-02 23:13:36 +02:00
/** @file
* @author Edouard DUPIN
* @author Fatima MARFOUQ
* @copyright 2011, Edouard DUPIN, all right reserved
* @license MPL v2.0 (see license file)
2015-04-02 23:13:36 +02:00
*/
2016-10-02 20:49:48 +02:00
#include <audio/algo/river/power.hpp>
2015-04-02 23:13:36 +02:00
float audio::algo::river::power(float* _data, int32_t _count) {
2015-04-02 23:13:36 +02:00
float out = 0;
for (size_t iii = 0; iii < _count; ++iii) {
out += *_data * *_data;
_data--;
}
return out;
}