arm_sin_q15.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* ----------------------------------------------------------------------
  2. * Project: CMSIS DSP Library
  3. * Title: arm_sin_q15.c
  4. * Description: Fast sine calculation for Q15 values
  5. *
  6. * $Date: 27. January 2017
  7. * $Revision: V.1.5.1
  8. *
  9. * Target Processor: Cortex-M cores
  10. * -------------------------------------------------------------------- */
  11. /*
  12. * Copyright (C) 2010-2017 ARM Limited or its affiliates. All rights reserved.
  13. *
  14. * SPDX-License-Identifier: Apache-2.0
  15. *
  16. * Licensed under the Apache License, Version 2.0 (the License); you may
  17. * not use this file except in compliance with the License.
  18. * You may obtain a copy of the License at
  19. *
  20. * www.apache.org/licenses/LICENSE-2.0
  21. *
  22. * Unless required by applicable law or agreed to in writing, software
  23. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  24. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  25. * See the License for the specific language governing permissions and
  26. * limitations under the License.
  27. */
  28. #include "arm_math.h"
  29. #include "arm_common_tables.h"
  30. /**
  31. * @ingroup groupFastMath
  32. */
  33. /**
  34. * @addtogroup sin
  35. * @{
  36. */
  37. /**
  38. * @brief Fast approximation to the trigonometric sine function for Q15 data.
  39. * @param[in] x Scaled input value in radians.
  40. * @return sin(x).
  41. *
  42. * The Q15 input value is in the range [0 +0.9999] and is mapped to a radian value in the range [0 2*pi).
  43. */
  44. q15_t arm_sin_q15(
  45. q15_t x)
  46. {
  47. q15_t sinVal; /* Temporary variables for input, output */
  48. int32_t index; /* Index variables */
  49. q15_t a, b; /* Four nearest output values */
  50. q15_t fract; /* Temporary values for fractional values */
  51. /* Calculate the nearest index */
  52. index = (uint32_t)x >> FAST_MATH_Q15_SHIFT;
  53. /* Calculation of fractional value */
  54. fract = (x - (index << FAST_MATH_Q15_SHIFT)) << 9;
  55. /* Read two nearest values of input value from the sin table */
  56. a = sinTable_q15[index];
  57. b = sinTable_q15[index+1];
  58. /* Linear interpolation process */
  59. sinVal = (q31_t)(0x8000-fract)*a >> 16;
  60. sinVal = (q15_t)((((q31_t)sinVal << 16) + ((q31_t)fract*b)) >> 16);
  61. return sinVal << 1;
  62. }
  63. /**
  64. * @} end of sin group
  65. */