![]() |
LIBML
Version 3.2.4
LIBML DSP Software Library
|
Functions | |
f32_t | tpt_sin_f32 (f32_t x) |
Fast approximation to the trigonometric sinine function for floating-point data. More... | |
f64_t | tpt_sin_f64 (f64_t x) |
Fast approximation to the trigonometric sinine function for floating-point data. More... | |
q15_t | tpt_sin_q15 (q15_t x) |
Fast approximation to the trigonometric sine function for Q15 data. More... | |
q31_t | tpt_sin_q31 (q31_t x) |
Fast approximation to the trigonometric sine function for Q31 data. More... | |
Function: Fast sine calculation
Use the look-up table to calculate the sine value There are separate functions for Q15, Q31, and floating-point data types. The input to the floating-point version is in radians while the fixed-point Q15 and Q31 have a scaled input with the range [-1, 1) mapping to [-π, π). The fixed-point range is chosen so that a value of π wraps around to -π.
The implementation is based on table lookup using 4096 values.
Function: Fast sine calculation
Fast approximation to the trigonometric sinine function for floating-point data.
[in] | x | input value in radians |
Fast approximation to the trigonometric sinine function for floating-point data.
[in] | x | input value in radians |
Fast approximation to the trigonometric sine function for Q15 data.
[in] | x | Scaled input value in radians |
The Q15 input value is in the range [-1, 1) and is mapped to a radian value in the range [-π, π).