Edge AI Add-on API 2.2.0
Loading...
Searching...
No Matches
nrf_dsp_lrp.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_LRP_FUNCTIONS_H_
16#define _NRF_DSP_STAT_LRP_FUNCTIONS_H_
17
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
25{
26 /* Slope of linear regression */
28
29 /* Intercept of linear regression */
32
34{
35 /* Slope of linear regression */
36 int32_t slope;
37
38 /* Intercept of linear regression */
39 int32_t intercept;
41
43{
44 /* Slope of linear regression */
45 int16_t slope;
46
47 /* Intercept of linear regression */
48 int16_t intercept;
50
60void nrf_dsp_lrp_f32(const flt32_t* p_input,
61 uint16_t num,
64
75void nrf_dsp_lrp_i16(const int16_t* p_input,
76 uint16_t num,
79
80void nrf_dsp_lrp_i8(const int8_t* p_input,
81 uint16_t num,
84#ifdef __cplusplus
85}
86#endif
87
88#endif /* _NRF_DSP_STAT_LRP_FUNCTIONS_H_ */
89
struct nrf_dsp_linear_reg_params_f32_s nrf_dsp_linear_reg_params_f32_t
struct nrf_dsp_linear_reg_params_i8_s nrf_dsp_linear_reg_params_i8_t
void nrf_dsp_lrp_i16(const int16_t *p_input, uint16_t num, nrf_dsp_linear_reg_params_i16_t *p_params, nrf_dsp_stat_ctx_i16_t *p_ctx)
Calculate Linear Regression Parameters (Slope, Intercept) of a INT16 fixed-point vector.
struct nrf_dsp_linear_reg_params_i16_s nrf_dsp_linear_reg_params_i16_t
void nrf_dsp_lrp_f32(const flt32_t *p_input, uint16_t num, nrf_dsp_linear_reg_params_f32_t *p_params, nrf_dsp_stat_ctx_f32_t *p_ctx)
Calculate Linear Regression Parameters (Slope, Intercept) of a floating-point vector.
void nrf_dsp_lrp_i8(const int8_t *p_input, uint16_t num, nrf_dsp_linear_reg_params_i8_t *p_params, nrf_dsp_stat_ctx_i8_t *p_ctx)
float flt32_t
32-bit floating-point type definition.
Definition nrf_edgeai_ctypes.h:21
flt32_t intercept
Definition nrf_dsp_lrp.h:30
flt32_t slope
Definition nrf_dsp_lrp.h:27
Definition nrf_dsp_lrp.h:25
int32_t slope
Definition nrf_dsp_lrp.h:36
int32_t intercept
Definition nrf_dsp_lrp.h:39
Definition nrf_dsp_lrp.h:34
int16_t slope
Definition nrf_dsp_lrp.h:45
int16_t intercept
Definition nrf_dsp_lrp.h:48
Definition nrf_dsp_lrp.h:43
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