| 
    Zephyr Project API
    3.3.0
    
   A Scalable Open Source RTOS 
   | 
 
Functions | |
| DSP_FUNC_SCOPE void | zdsp_abs_f32 (const float32_t *src, float32_t *dst, uint32_t block_size) | 
| Floating-point vector absolute value.  More... | |
| DSP_FUNC_SCOPE void | zdsp_abs_q7 (const q7_t *src, q7_t *dst, uint32_t block_size) | 
| Q7 vector absolute value.  More... | |
| DSP_FUNC_SCOPE void | zdsp_abs_q15 (const q15_t *src, q15_t *dst, uint32_t block_size) | 
| Q15 vector absolute value.  More... | |
| DSP_FUNC_SCOPE void | zdsp_abs_q31 (const q31_t *src, q31_t *dst, uint32_t block_size) | 
| Q31 vector absolute value.  More... | |
| DSP_FUNC_SCOPE void | zdsp_abs_f16 (const float16_t *src, float16_t *dst, uint32_t block_size) | 
| Floating-point vector absolute value.  More... | |
Computes the absolute value of a vector on an element-by-element basis.
    dst[n] = abs(src[n]),   0 <= n < block_size.
The functions support in-place computation allowing the source and destination pointers to reference the same memory buffer. There are separate functions for floating-point, Q7, Q15, and Q31 data types.
| DSP_FUNC_SCOPE void zdsp_abs_f16 | ( | const float16_t * | src, | 
| float16_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath_f16.h>
Floating-point vector absolute value.
| [in] | src | points to the input buffer | 
| [out] | dst | points to the output buffer | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_abs_f32 | ( | const float32_t * | src, | 
| float32_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Floating-point vector absolute value.
| [in] | src | points to the input buffer | 
| [out] | dst | points to the output buffer | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_abs_q15 | ( | const q15_t * | src, | 
| q15_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q15 vector absolute value.
| [in] | src | points to the input buffer | 
| [out] | dst | points to the output buffer | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_abs_q31 | ( | const q31_t * | src, | 
| q31_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q31 vector absolute value.
| [in] | src | points to the input buffer | 
| [out] | dst | points to the output buffer | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_abs_q7 | ( | const q7_t * | src, | 
| q7_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q7 vector absolute value.
| [in] | src | points to the input buffer | 
| [out] | dst | points to the output buffer | 
| [in] | block_size | number of samples in each vector |