A vector a is transformed via a discrete cosine transform (DCT) to give vector b. For example in Matlab
b=dct(a);.
Vector a is also transformed via a discrete Fourier transform (DFT) to give vector c. E.g.
c=fft(a);
What is the fastest way to determine c from b without using a or retrieving it? For example,
c=fft(idft(b));
is not allowed.
I guess "fastest" is in the eye of the beholder. Lets go for a big-O style metric
– David C Mar 25 '21 at 13:57