Closed fionser closed 6 years ago
Hello, fftInv is a real fff inverse transformation, and ffiSpecialInv is an embedding transformation (may be we should rename this function to avoid misunderstandings). For embedding transformation the method is a little bit different from fft
@kimandrik In my understanding, the specialized operations are used for rotating embedded values;
do the order of bitReverse
matters in the fftSpecialnv
?
The specialized operations are used to encode/decode the array of values to/from the polynomial. I'm not sure about the possible position of bitReverse. We found a method to evaluate fftSpecialInv, and it works. Maybe you can find another method of evaluating this specialized transformation when bitReverse operation is called after butterfly steps.
Hi, I have a question about the
fftInv
andfftSpecialInv
;bitReverse
is placed differently in these two methods:fftInv
callbitReverse
after the butterfly steps whilefftSpecialInv
call before the butterfly steps;