This repository has been archived on 2023-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
bl_mcu_sdk/examples/dsp/FastMathFunctions_trigonometricPart/sin.c

14 lines
293 B
C

#include "ref.h"
q31_t ref_sin_q31(q31_t x)
{
return (q31_t)(sinf((float32_t)x * 6.28318530717959f / 2147483648.0f) *
2147483648.0f);
}
q15_t ref_sin_q15(q15_t x)
{
return (q15_t)(sinf((float32_t)x * 6.28318530717959f / 32768.0f) *
32768.0f);
}