You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param[out] output The complex-valued output array
90
+
* @remarks Calling this method will mess up the content of the **input** array.
90
91
* @note When built for ARM Cortex-M processor series, this method uses the optimized <a href="http://www.keil.com/pack/doc/CMSIS/General/html/index.html">CMSIS library</a>
91
92
*/
92
-
voidfft(FloatArray& in, ComplexFloatArray& out){
93
-
ASSERT(in.getSize() >= getSize(), "Input array too small");
94
-
ASSERT(out.getSize() >= getSize(), "Output array too small");
* @remarks Calling this method will mess up the content of the **input** array.
106
109
* @note When built for ARM Cortex-M processor series, this method uses the optimized <a href="http://www.keil.com/pack/doc/CMSIS/General/html/index.html">CMSIS library</a>
110
+
*
107
111
*/
108
-
voidifft(ComplexFloatArray& in, FloatArray& out){
109
-
ASSERT(in.getSize() >= getSize(), "Input array too small");
110
-
ASSERT(out.getSize() >= getSize(), "Output array too small");
0 commit comments