ok I did try this:
setting the 'timeShift' to +2 produced numbers of
1023, 1024, 1, ... , 1021, 1022
setting the 'timeShift' to 0 produced numbers of
1, 2, 3, ..., 1023, 1024
setting the 'timeShift' to -2 produced numbers of
2, 3, 4, ... , 1022, 1023, 0, 1
The -2 shift appears to be...
thank you both for your great replies, and yes you are both correct in understanding what I am trying to do.
Thanks for the suggestion to multiply the imaginary coeffs by -1, I'll try this, but in the meantime my question is:
for the code line:
imaginaryValue[i] = (imaginaryValue[i] *...
Hi all,
I'm trying to go about the task of samping a small piece of an audio signal and then reproducing that piece an arbitrary amount of times (repeating the same audio over and over I suppose you could say). I'm working in C++.
The way I'm going about doing it is like so (using an...