Edge AI Add-on API 2.2.0
Loading...
Searching...
No Matches

Data Structures

union  nrf_dsp_moments_f32_u
 Floating-point statistical moments container. More...
 
union  nrf_dsp_moments_i8_u
 INT8 statistical moments container. More...
 
union  nrf_dsp_moments_i16_u
 INT16 statistical moments container. More...
 

Typedefs

typedef union nrf_dsp_moments_f32_u nrf_dsp_moments_f32_t
 Floating-point statistical moments container.
 
typedef union nrf_dsp_moments_i8_u nrf_dsp_moments_i8_t
 INT8 statistical moments container.
 
typedef union nrf_dsp_moments_i16_u nrf_dsp_moments_i16_t
 INT16 statistical moments container.
 

Functions

void nrf_dsp_moments_f32 (const flt32_t *p_input, uint16_t num, nrf_dsp_stat_ctx_f32_t *p_ctx, nrf_dsp_moments_f32_t *p_m)
 Calculate 3 higher statistical moments(Variance, Skewness, Kurtosis) of a floating-point vector.
 
void nrf_dsp_moments_f32_s (const flt32_t *p_input, uint16_t num, size32_t stride, nrf_dsp_stat_ctx_f32_t *p_ctx, nrf_dsp_moments_f32_t *p_m)
 Calculate 3 higher statistical moments(Variance, Skewness, Kurtosis) of a floating-point vector.
 
void nrf_dsp_moments_i8 (const int8_t *p_input, uint16_t num, nrf_dsp_stat_ctx_i8_t *p_ctx, nrf_dsp_moments_i8_t *p_m)
 Calculate 3 higher statistical moments(Variance, Skewness, Kurtosis) of a INT8 vector.
 
void nrf_dsp_moments_i16 (const int16_t *p_input, uint16_t num, nrf_dsp_stat_ctx_i16_t *p_ctx, nrf_dsp_moments_i16_t *p_m)
 Calculate 3 higher statistical moments(Variance, Skewness, Kurtosis) of a INT16 vector.
 

Detailed Description