mirror of https://github.com/probonopd/MiniDexed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
574 B
22 lines
574 B
#pragma once
|
|
|
|
#include "arm_math_types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/**
|
|
* @brief Scale two floating-point vector with a scalar and zip after.
|
|
* @param[in] pSrc1 points to the input vector 1
|
|
* @param[in] pSrc2 points to the input vector 2
|
|
* @param[in] scale scale scalar
|
|
* @param[out] pDst points to the output vector
|
|
* @param[in] blockSize number of samples in the vector
|
|
*/
|
|
void arm_scale_zip_f32(const float32_t * pSrc1, const float32_t * pSrc2, float32_t scale, float32_t * pDst, uint32_t blockSize);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|