|
ESP-IDF Firmware
Firmware architecture and call graph
|
#include "dsps_corr.h"Go to the source code of this file.
Functions | |
| esp_err_t | dsps_corr_f32_ansi (const float *Signal, const int siglen, const float *Pattern, const int patlen, float *dest) |
| Correlation with pattern. | |
| esp_err_t dsps_corr_f32_ansi | ( | const float * | Signal, |
| const int | siglen, | ||
| const float * | Pattern, | ||
| const int | patlen, | ||
| float * | dest ) |
Correlation with pattern.
The function correlate input sigla array with pattern array. The implementation use ANSI C and could be compiled and run on any platform
| [in] | Signal | input array with signal values |
| [in] | siglen | length of the signal array |
| [in] | Pattern | input array with pattern values |
| [in] | patlen | length of the pattern array. The siglen must be bigger then patlen! |
| dest | output array with result of correlation |
Definition at line 17 of file dsps_corr_f32_ansi.c.
References ESP_ERR_DSP_PARAM_OUTOFRANGE, ESP_OK, m, and n.