Skip to content
Snippets Groups Projects
Commit f2b86588 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

fixes error in definition of V(N,K)

parent fc7d19ea
No related branches found
No related tags found
No related merge requests found
...@@ -731,7 +731,7 @@ The codeword is converted from a unique index in the same way as specified in ...@@ -731,7 +731,7 @@ The codeword is converted from a unique index in the same way as specified in
(denoted N(L,K) in <xref target="PVQ"></xref>), which is the number of possible (denoted N(L,K) in <xref target="PVQ"></xref>), which is the number of possible
combinations of K pulses combinations of K pulses
in N samples. The number of combinations can be computed recursively as in N samples. The number of combinations can be computed recursively as
V(N,K) = V(N+1,K) + V(N,K+1) + V(N+1,K+1), with V(N,0) = 1 and V(0,K) = 0, K != 0. V(N,K) = V(N-1,K) + V(N,K-1) + V(N-1,K-1), with V(N,0) = 1 and V(0,K) = 0, K != 0.
There are many different ways to compute V(N,K), including pre-computed tables and direct There are many different ways to compute V(N,K), including pre-computed tables and direct
use of the recursive formulation. The reference implementation applies the recursive use of the recursive formulation. The reference implementation applies the recursive
formulation one line (or column) at a time to save on memory use, formulation one line (or column) at a time to save on memory use,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment