29#ifndef autocorrelation_hpp
30#define autocorrelation_hpp
32#include "../math/ft/fftT.hpp"
55 #pragma omp parallel for
56 for(
int i = 0; i < Nac; ++i )
59 for(
int j = 0; j < Nsig - i; ++j )
61 ac[i] += sig[j] * sig[j + i];
66 for(
int i = 0; i < Nac; ++i )
88 ac.resize( sig.size() );
105 std::vector<std::complex<T>> fftOut;
106 std::vector<std::complex<T>> fftIn;
108 math::ft::fftT<std::complex<T>, std::complex<T>, 1, 0> fft;
123 fftOut.resize( Npsd );
124 fftIn.resize( Npsd );
126 for(
size_t i = 0; i < Npsd; ++i )
129 fft( fftOut.data(), fftIn.data() );
131 T norm = fftOut[0].real();
132 for(
size_t i = 0; i < Npsd && i < Nac; ++i )
133 ac[i] = fftOut[i].real() / norm;
146 ac.resize( psd.size() );
147 operator()( ac.data(), ac.size(), psd.data(), psd.size() );
@ forward
Specifies the forward transform.
void autocorrelation(T *ac, size_t Nac, T *sig, size_t Nsig)
Calculate the autocorrelation of a time-series.
Functor for calculating the autocorrelation given a PSD.
void operator()(std::vector< T > &ac, std::vector< T > &psd)
Calculate the A.C. as the inverse FFT of the PSD.
void operator()(T *ac, size_t Nac, T *psd, size_t Npsd)
Calculate the A.C. as the inverse FFT of the PSD.