| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* ----------------------------------------------------------------------
- * Project: CMSIS DSP Library
- * Title: WindowFunctions.c
- * Description: Windowing functions for spectral estimations
- *
- *
- * Target Processor: Cortex-M and Cortex-A cores
- * -------------------------------------------------------------------- */
- /*
- * Copyright (C) 2019-2022 ARM Limited or its affiliates. All rights reserved.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Licensed under the Apache License, Version 2.0 (the License); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "arm_welch_f32.c"
- #include "arm_welch_f64.c"
- #include "arm_bartlett_f32.c"
- #include "arm_bartlett_f64.c"
- #include "arm_hamming_f32.c"
- #include "arm_hamming_f64.c"
- #include "arm_hanning_f32.c"
- #include "arm_hanning_f64.c"
- #include "arm_nuttall3_f32.c"
- #include "arm_nuttall3_f64.c"
- #include "arm_nuttall4_f32.c"
- #include "arm_nuttall4_f64.c"
- #include "arm_nuttall3a_f32.c"
- #include "arm_nuttall3a_f64.c"
- #include "arm_nuttall3b_f32.c"
- #include "arm_nuttall3b_f64.c"
- #include "arm_nuttall4a_f32.c"
- #include "arm_nuttall4a_f64.c"
- #include "arm_blackman_harris_92db_f32.c"
- #include "arm_blackman_harris_92db_f64.c"
- #include "arm_nuttall4b_f32.c"
- #include "arm_nuttall4b_f64.c"
- #include "arm_nuttall4c_f32.c"
- #include "arm_nuttall4c_f64.c"
- #include "arm_hft90d_f32.c"
- #include "arm_hft90d_f64.c"
- #include "arm_hft95_f32.c"
- #include "arm_hft95_f64.c"
- #include "arm_hft116d_f32.c"
- #include "arm_hft116d_f64.c"
- #include "arm_hft144d_f32.c"
- #include "arm_hft144d_f64.c"
- #include "arm_hft169d_f32.c"
- #include "arm_hft169d_f64.c"
- #include "arm_hft196d_f32.c"
- #include "arm_hft196d_f64.c"
- #include "arm_hft223d_f32.c"
- #include "arm_hft223d_f64.c"
- #include "arm_hft248d_f32.c"
- #include "arm_hft248d_f64.c"
|