CMSIS-DSP: Fix FIR document

pull/19/head
Kishinami 5 years ago committed by Christophe Favergeon
parent be37c96358
commit 5409d06050

@ -61,7 +61,7 @@
Samples in the state buffer are stored in the following order.
@par
<pre>
{x[n-numTaps+1], x[n-numTaps], x[n-numTaps-1], x[n-numTaps-2]....x[0], x[1], ..., x[blockSize-1]}
{x[n-numTaps+1], x[n-numTaps], x[n-numTaps-1], x[n-numTaps-2]....x[n](==pSrc[0]), x[n+1](==pSrc[1]), ..., x[n+blockSize-1](==pSrc[blockSize-1])}
</pre>
@par
Note that the length of the state buffer exceeds the length of the coefficient array by <code>blockSize-1</code>.

Loading…
Cancel
Save