WindowFunctions.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* ----------------------------------------------------------------------
  2. * Project: CMSIS DSP Library
  3. * Title: WindowFunctions.c
  4. * Description: Windowing functions for spectral estimations
  5. *
  6. *
  7. * Target Processor: Cortex-M and Cortex-A cores
  8. * -------------------------------------------------------------------- */
  9. /*
  10. * Copyright (C) 2019-2022 ARM Limited or its affiliates. All rights reserved.
  11. *
  12. * SPDX-License-Identifier: Apache-2.0
  13. *
  14. * Licensed under the Apache License, Version 2.0 (the License); you may
  15. * not use this file except in compliance with the License.
  16. * You may obtain a copy of the License at
  17. *
  18. * www.apache.org/licenses/LICENSE-2.0
  19. *
  20. * Unless required by applicable law or agreed to in writing, software
  21. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  22. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  23. * See the License for the specific language governing permissions and
  24. * limitations under the License.
  25. */
  26. #include "arm_welch_f32.c"
  27. #include "arm_welch_f64.c"
  28. #include "arm_bartlett_f32.c"
  29. #include "arm_bartlett_f64.c"
  30. #include "arm_hamming_f32.c"
  31. #include "arm_hamming_f64.c"
  32. #include "arm_hanning_f32.c"
  33. #include "arm_hanning_f64.c"
  34. #include "arm_nuttall3_f32.c"
  35. #include "arm_nuttall3_f64.c"
  36. #include "arm_nuttall4_f32.c"
  37. #include "arm_nuttall4_f64.c"
  38. #include "arm_nuttall3a_f32.c"
  39. #include "arm_nuttall3a_f64.c"
  40. #include "arm_nuttall3b_f32.c"
  41. #include "arm_nuttall3b_f64.c"
  42. #include "arm_nuttall4a_f32.c"
  43. #include "arm_nuttall4a_f64.c"
  44. #include "arm_blackman_harris_92db_f32.c"
  45. #include "arm_blackman_harris_92db_f64.c"
  46. #include "arm_nuttall4b_f32.c"
  47. #include "arm_nuttall4b_f64.c"
  48. #include "arm_nuttall4c_f32.c"
  49. #include "arm_nuttall4c_f64.c"
  50. #include "arm_hft90d_f32.c"
  51. #include "arm_hft90d_f64.c"
  52. #include "arm_hft95_f32.c"
  53. #include "arm_hft95_f64.c"
  54. #include "arm_hft116d_f32.c"
  55. #include "arm_hft116d_f64.c"
  56. #include "arm_hft144d_f32.c"
  57. #include "arm_hft144d_f64.c"
  58. #include "arm_hft169d_f32.c"
  59. #include "arm_hft169d_f64.c"
  60. #include "arm_hft196d_f32.c"
  61. #include "arm_hft196d_f64.c"
  62. #include "arm_hft223d_f32.c"
  63. #include "arm_hft223d_f64.c"
  64. #include "arm_hft248d_f32.c"
  65. #include "arm_hft248d_f64.c"