|
ESP-IDF Firmware
Firmware architecture and call graph
|
#include "dsps_mulc.h"Go to the source code of this file.
Functions | |
| esp_err_t | dsps_mulc_f32_ansi (const float *input, float *output, int len, float C, int step_in, int step_out) |
| multiply constant | |
| esp_err_t dsps_mulc_f32_ansi | ( | const float * | input, |
| float * | output, | ||
| int | len, | ||
| float | C, | ||
| int | step_in, | ||
| int | step_out ) |
multiply constant
The function multiplies input array to the constant value x[i*step_out] = y[i*step_in]*C; i=[0..len) The implementation use ANSI C and could be compiled and run on any platform
| [in] | input | input array |
| output | output array | |
| len | amount of operations for arrays | |
| C | constant value | |
| step_in | step over input array (by default should be 1) | |
| step_out | step over output array (by default should be 1) |
Definition at line 17 of file dsps_mulc_f32_ansi.c.
References C, ESP_ERR_DSP_PARAM_OUTOFRANGE, and ESP_OK.
Referenced by audio_read_task(), audio_read_task(), audio_read_task(), dspm::Mat::operator*=(), and dspm::Mat::operator/=().