Functions | |
void | arm_correlate_f16 (const float16_t *pSrcA, uint32_t srcALen, const float16_t *pSrcB, uint32_t srcBLen, float16_t *pDst) |
Correlation of floating-point sequences. | |
void | arm_correlate_f32 (const float32_t *pSrcA, uint32_t srcALen, const float32_t *pSrcB, uint32_t srcBLen, float32_t *pDst) |
Correlation of floating-point sequences. | |
void | arm_correlate_f64 (const float64_t *pSrcA, uint32_t srcALen, const float64_t *pSrcB, uint32_t srcBLen, float64_t *pDst) |
Correlation of floating-point sequences. | |
void | arm_correlate_fast_opt_q15 (const q15_t *pSrcA, uint32_t srcALen, const q15_t *pSrcB, uint32_t srcBLen, q15_t *pDst, q15_t *pScratch) |
Correlation of Q15 sequences (fast version). | |
void | arm_correlate_fast_q15 (const q15_t *pSrcA, uint32_t srcALen, const q15_t *pSrcB, uint32_t srcBLen, q15_t *pDst) |
Correlation of Q15 sequences (fast version). | |
void | arm_correlate_fast_q31 (const q31_t *pSrcA, uint32_t srcALen, const q31_t *pSrcB, uint32_t srcBLen, q31_t *pDst) |
Correlation of Q31 sequences (fast version). | |
void | arm_correlate_opt_q15 (const q15_t *pSrcA, uint32_t srcALen, const q15_t *pSrcB, uint32_t srcBLen, q15_t *pDst, q15_t *pScratch) |
Correlation of Q15 sequences. | |
void | arm_correlate_opt_q7 (const q7_t *pSrcA, uint32_t srcALen, const q7_t *pSrcB, uint32_t srcBLen, q7_t *pDst, q15_t *pScratch1, q15_t *pScratch2) |
Correlation of Q7 sequences. | |
void | arm_correlate_q15 (const q15_t *pSrcA, uint32_t srcALen, const q15_t *pSrcB, uint32_t srcBLen, q15_t *pDst) |
Correlation of Q15 sequences. | |
void | arm_correlate_q31 (const q31_t *pSrcA, uint32_t srcALen, const q31_t *pSrcB, uint32_t srcBLen, q31_t *pDst) |
Correlation of Q31 sequences. | |
void | arm_correlate_q7 (const q7_t *pSrcA, uint32_t srcALen, const q7_t *pSrcB, uint32_t srcBLen, q7_t *pDst) |
Correlation of Q7 sequences. | |
Correlation is a mathematical operation that is similar to convolution. As with convolution, correlation uses two signals to produce a third signal. The underlying algorithms in correlation and convolution are identical except that one of the inputs is flipped in convolution. Correlation is commonly used to measure the similarity between two signals. It has applications in pattern recognition, cryptanalysis, and searching. The CMSIS library provides correlation functions for Q7, Q15, Q31 and floating-point data types. Fast versions of the Q15 and Q31 functions are also provided.
a[n]
and b[n]
be sequences of length srcALen
and srcBLen
samples respectively. The convolution of the two signals is denoted by c[n] = a[n] * b[n]
In correlation, one of the signals is flipped in time
c[n] = a[n] * b[-n]
c[n] = \sum_{k=0}^{srcALen} a[k] b[k-n]
pSrcA
points to the first input vector of length srcALen
and pSrcB
points to the second input vector of length srcBLen
. The result c[n]
is of length 2 * max(srcALen, srcBLen) - 1
and is defined over the interval n=0, 1, 2, ..., (2 * max(srcALen, srcBLen) - 2)
. The output result is written to pDst
and the calling function must allocate 2 * max(srcALen, srcBLen) - 1
words for the result.pDst
should be initialized to all zeros before being used.void arm_correlate_f16 | ( | const float16_t * | pSrcA, |
uint32_t | srcALen, | ||
const float16_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
float16_t * | pDst | ||
) |
Correlation of floating-point sequences.
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
void arm_correlate_f32 | ( | const float32_t * | pSrcA, |
uint32_t | srcALen, | ||
const float32_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
float32_t * | pDst | ||
) |
Correlation of floating-point sequences.
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
void arm_correlate_f64 | ( | const float64_t * | pSrcA, |
uint32_t | srcALen, | ||
const float64_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
float64_t * | pDst | ||
) |
Correlation of floating-point sequences.
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
void arm_correlate_fast_opt_q15 | ( | const q15_t * | pSrcA, |
uint32_t | srcALen, | ||
const q15_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
q15_t * | pDst, | ||
q15_t * | pScratch | ||
) |
Correlation of Q15 sequences (fast version).
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence. |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
[in] | pScratch | points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. |
void arm_correlate_fast_q15 | ( | const q15_t * | pSrcA, |
uint32_t | srcALen, | ||
const q15_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
q15_t * | pDst | ||
) |
Correlation of Q15 sequences (fast version).
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
void arm_correlate_fast_q31 | ( | const q31_t * | pSrcA, |
uint32_t | srcALen, | ||
const q31_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
q31_t * | pDst | ||
) |
Correlation of Q31 sequences (fast version).
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
void arm_correlate_opt_q15 | ( | const q15_t * | pSrcA, |
uint32_t | srcALen, | ||
const q15_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
q15_t * | pDst, | ||
q15_t * | pScratch | ||
) |
Correlation of Q15 sequences.
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
[in] | pScratch | points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. |
void arm_correlate_opt_q7 | ( | const q7_t * | pSrcA, |
uint32_t | srcALen, | ||
const q7_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
q7_t * | pDst, | ||
q15_t * | pScratch1, | ||
q15_t * | pScratch2 | ||
) |
Correlation of Q7 sequences.
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
[in] | pScratch1 | points to scratch buffer(of type q15_t) of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. |
[in] | pScratch2 | points to scratch buffer (of type q15_t) of size min(srcALen, srcBLen). |
max(srcALen, srcBLen)<131072
. The 18.14 result is then truncated to 18.7 format by discarding the low 7 bits and then saturated to 1.7 format. void arm_correlate_q15 | ( | const q15_t * | pSrcA, |
uint32_t | srcALen, | ||
const q15_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
q15_t * | pDst | ||
) |
Correlation of Q15 sequences.
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
void arm_correlate_q31 | ( | const q31_t * | pSrcA, |
uint32_t | srcALen, | ||
const q31_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
q31_t * | pDst | ||
) |
Correlation of Q31 sequences.
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
void arm_correlate_q7 | ( | const q7_t * | pSrcA, |
uint32_t | srcALen, | ||
const q7_t * | pSrcB, | ||
uint32_t | srcBLen, | ||
q7_t * | pDst | ||
) |
Correlation of Q7 sequences.
[in] | pSrcA | points to the first input sequence |
[in] | srcALen | length of the first input sequence |
[in] | pSrcB | points to the second input sequence |
[in] | srcBLen | length of the second input sequence |
[out] | pDst | points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. |
max(srcALen, srcBLen)<131072
. The 18.14 result is then truncated to 18.7 format by discarding the low 7 bits and saturated to 1.7 format.