15#ifndef _NRF_DSP_STAT_TCR_FUNCTIONS_H_
16#define _NRF_DSP_STAT_TCR_FUNCTIONS_H_
59int16_t
nrf_dsp_tcr_i8(
const int8_t* p_input, uint16_t num,
const int8_t threshold);
74 const int8_t threshold);
85int16_t
nrf_dsp_tcr_i16(
const int16_t* p_input, uint16_t num,
const int16_t threshold);
100 const int16_t threshold);
111int16_t
nrf_dsp_tcr_i32(
const int32_t* p_input, uint16_t num,
const int32_t threshold);
126 const int32_t threshold);
flt32_t nrf_dsp_tcr_f32_s(const flt32_t *p_input, uint16_t num, size32_t stride, const flt32_t threshold)
Counts Threshold-crossing rate of a floating-point vector using values in increments of 'stride'.
int16_t nrf_dsp_tcr_i16(const int16_t *p_input, uint16_t num, const int16_t threshold)
Counts Threshold-crossing rate of a INT16 fixed-point vector.
int16_t nrf_dsp_tcr_i32(const int32_t *p_input, uint16_t num, const int32_t threshold)
Counts Threshold-crossing rate of a INT32 fixed-point vector.
int16_t nrf_dsp_tcr_i32_s(const int32_t *p_input, uint16_t num, size32_t stride, const int32_t threshold)
Counts Threshold-crossing rate of a INT32 fixed-point vector using values in increments of 'strid...
flt32_t nrf_dsp_tcr_f32(const flt32_t *p_input, uint16_t num, const flt32_t threshold)
Counts Threshold-crossing rate of a floating-point vector.
int16_t nrf_dsp_tcr_i8_s(const int8_t *p_input, uint16_t num, size32_t stride, const int8_t threshold)
Counts Threshold-crossing rate of a INT8 fixed-point vector using values in increments of 'stride...
int16_t nrf_dsp_tcr_i16_s(const int16_t *p_input, uint16_t num, size32_t stride, const int16_t threshold)
Counts Threshold-crossing rate of a INT16 fixed-point vector using values in increments of 'strid...
int16_t nrf_dsp_tcr_i8(const int8_t *p_input, uint16_t num, const int8_t threshold)
Counts Threshold-crossing rate of a INT8 fixed-point vector.
size_t size32_t
Architecture 32-bit size_t type definition.
Definition nrf_edgeai_ctypes.h:31
float flt32_t
32-bit floating-point type definition.
Definition nrf_edgeai_ctypes.h:21