Sergey.Bochkanov wrote:
If you want to get real part of the FFT, you should read output_array[i].x - it contains real part. Is it what you need?
P.S. As for donations - it is impossible to accept PayPal payments from Russia, unfortunately. If you want, you can e-mail me and tell specific sum you want to donate, and I will send you a link to the special webform used for non-standard payments. (I need to know payments sum and currency beforehand in order to prepare this form)
Thank you very much for your answer it was indeed very simple.
I took my time because i wanted to be sure that i undestood before answering .
If i draw the "power spectrum" of the joint movement via the kinect sensor, therefore i can do:
n = total number of recordings ;
alglib.fftr1d(timeref, out freqref);
Powerspectrum = 2 * Math.Pow((Math.Sqrt(Math.Pow(freqref[i].x, 2) + Math.Pow(freqref[i].y, 2)) / n), 2)
Each frequency step = (n / total time)
If this is correct, are there any precautions that i should take with n? (should n be a power of 2 for example?)
2:)Concerning donation, it's not much just a way to say thank you, may i pm you for that?
3°) The final objective of my personal project (opensource) is to look for the stability of jointmotion, therefore i would like to use the Lyapunov Exponent to quantify stabilty. I didn' t find any c# library that could help me code that, do you have an advice?
EDITT: i saw that alglib can help for nearest neigboor and delay choosing, but i lack the method to go from that to LLE.
thanx in advance