Added a new test for the fourier interface
This commit is contained in:
parent
5341c8ed5d
commit
6a833c7393
3 changed files with 22 additions and 1 deletions
12
sample/test_fft_calls.cpp
Normal file
12
sample/test_fft_calls.cpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include "fourier/euclidian.hpp"
|
||||
|
||||
using namespace CosmoTool;
|
||||
|
||||
int main()
|
||||
{
|
||||
EuclidianFourierTransform_2d<double> dft(128,128,1.0,1.0);
|
||||
|
||||
dft.realSpace().eigen().setRandom();
|
||||
dft.analysis();
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue