Files
dsp/dsp/math/add.h
AlexandreRouma 5c7b6997df progress
2026-03-10 11:43:17 -04:00

17 lines
367 B
C++

#pragma once
namespace dsp::math {
template <class T>
class Add {
public:
/**
* Add the samples together.
* @param a Operand A.
* @param b Operand B.
* @param out Sum of A and B.
*/
size_t process(const T* a, const T* b, T* out, size_t count);
};
const int test = sizeof(Add<float>);
}