OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:freqbuf
(Results
1 - 2
of
2
) sorted by null
/external/eigen/unsupported/test/
FFTW.cpp
87
ComplexVector
freqBuf
;
94
fft.fwd(
freqBuf
,tbuf);
95
VERIFY((size_t)
freqBuf
.size() == (size_t)( (nfft>>1)+1) );
96
VERIFY( fft_rmse(
freqBuf
,tbuf) < test_precision<T>() );// gross check
99
fft.fwd(
freqBuf
,tbuf);
100
VERIFY( (size_t)
freqBuf
.size() == (size_t)nfft);
101
VERIFY( fft_rmse(
freqBuf
,tbuf) < test_precision<T>() );// gross check
107
fft.inv( tbuf2 ,
freqBuf
);
115
fft.inv( tbuf3 ,
freqBuf
);
122
// cout << "
freqBuf
=" << freqBuf[i] << " in2=" << tbuf3[i] << " - in=" << tbuf[i] << " => " << (tbuf3[i] - tbuf[i] ) (…)
[
all
...]
/external/eigen/unsupported/doc/examples/
FFT.cpp
81
vector<T_freq>
freqbuf
;
local
83
fft.fwd(
freqbuf
,timebuf);
86
fft.inv(timebuf2,
freqbuf
);
Completed in 47 milliseconds