Go to the source code of this file.
|
| void | nrf_dsp_scale_zscore_f32 (const flt32_t *p_input, uint16_t num, const flt32_t mean, const flt32_t stddev, flt32_t *p_output) |
| | Z-score scaling of the floating-point vector ( y = (x - mean) / stddev )
|
| |
| void | nrf_dsp_scale_zscore_i8 (const int8_t *p_input, uint16_t num, const int8_t mean, const int8_t stddev, int8_t *p_output) |
| | Z-score scaling of the INT8 vector ( y = (x - mean) / stddev )
|
| |
| void | nrf_dsp_scale_zscore_i16 (const int16_t *p_input, uint16_t num, const int16_t mean, const int16_t stddev, int16_t *p_output) |
| | Z-score scaling of the INT16 vector ( y = (x - mean) / stddev )
|
| |