Edge AI Add-on API 2.2.0
Loading...
Searching...
No Matches
nrf_dsp_autocorr.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2026 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
15#ifndef _NRF_DSP_STAT_AUTOCORR_FUNCTIONS_H_
16#define _NRF_DSP_STAT_AUTOCORR_FUNCTIONS_H_
17
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
37 uint16_t num,
38 const uint8_t lag,
40
53int16_t nrf_dsp_autocorr_i8(const int8_t* p_input,
54 uint16_t num,
55 const uint8_t lag,
57
70int16_t nrf_dsp_autocorr_i16(const int16_t* p_input,
71 uint16_t num,
72 const uint8_t lag,
74
75#ifdef __cplusplus
76}
77#endif
78
79#endif /* _NRF_DSP_STAT_AUTOCORR_FUNCTIONS_H_ */
80
flt32_t nrf_dsp_autocorr_f32(const flt32_t *p_input, uint16_t num, const uint8_t lag, nrf_dsp_stat_ctx_f32_t *p_ctx)
Calculate Autocorrelation value in the floating-point vector.
int16_t nrf_dsp_autocorr_i8(const int8_t *p_input, uint16_t num, const uint8_t lag, nrf_dsp_stat_ctx_i8_t *p_ctx)
Calculate Autocorrelation value in the INT8 fixed-point vector.
int16_t nrf_dsp_autocorr_i16(const int16_t *p_input, uint16_t num, const uint8_t lag, nrf_dsp_stat_ctx_i16_t *p_ctx)
Calculate Autocorrelation value in the INT16 fixed-point vector.
float flt32_t
32-bit floating-point type definition.
Definition nrf_edgeai_ctypes.h:21
Floating-point statistics reusable context, in which is used to store derived or intermediate metrics...
Definition nrf_dsp_types.h:85
INT16 statistics reusable context, in which is used to store derived or intermediate metrics to simpl...
Definition nrf_dsp_types.h:146
INT8 statistics reusable context, in which is used to store derived or intermediate metrics to simpli...
Definition nrf_dsp_types.h:125