| 
    Zephyr Project API
    3.3.0
    
   A Scalable Open Source RTOS 
   | 
 
Functions | |
| DSP_FUNC_SCOPE void | zdsp_sub_f32 (const float32_t *src_a, const float32_t *src_b, float32_t *dst, uint32_t block_size) | 
| Floating-point vector subtraction.  More... | |
| DSP_FUNC_SCOPE void | zdsp_sub_q7 (const q7_t *src_a, const q7_t *src_b, q7_t *dst, uint32_t block_size) | 
| Q7 vector subtraction.  More... | |
| DSP_FUNC_SCOPE void | zdsp_sub_q15 (const q15_t *src_a, const q15_t *src_b, q15_t *dst, uint32_t block_size) | 
| Q15 vector subtraction.  More... | |
| DSP_FUNC_SCOPE void | zdsp_sub_q31 (const q31_t *src_a, const q31_t *src_b, q31_t *dst, uint32_t block_size) | 
| Q31 vector subtraction.  More... | |
| DSP_FUNC_SCOPE void | zdsp_sub_f16 (const float16_t *src_a, const float16_t *src_b, float16_t *dst, uint32_t block_size) | 
| Floating-point vector subtraction.  More... | |
Element-by-element subtraction of two vectors.
    dst[n] = src_a[n] - src_b[n],   0 <= n < block_size.
There are separate functions for floating-point, Q7, Q15, and Q31 data types.
| DSP_FUNC_SCOPE void zdsp_sub_f16 | ( | const float16_t * | src_a, | 
| const float16_t * | src_b, | ||
| float16_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath_f16.h>
Floating-point vector subtraction.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_sub_f32 | ( | const float32_t * | src_a, | 
| const float32_t * | src_b, | ||
| float32_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Floating-point vector subtraction.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_sub_q15 | ( | const q15_t * | src_a, | 
| const q15_t * | src_b, | ||
| q15_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q15 vector subtraction.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_sub_q31 | ( | const q31_t * | src_a, | 
| const q31_t * | src_b, | ||
| q31_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q31 vector subtraction.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_sub_q7 | ( | const q7_t * | src_a, | 
| const q7_t * | src_b, | ||
| q7_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q7 vector subtraction.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector |