├── .cproject ├── .gitignore ├── .project ├── .pydevproject ├── .settings ├── language.settings.xml └── org.eclipse.core.resources.prefs ├── LICENSE ├── Makefile ├── README.md ├── eqn ├── Makefile ├── c2c_product.png ├── c2c_product.tex ├── c2c_product_real.png ├── c2c_product_real.tex ├── complex_dft.png ├── complex_dft.tex ├── euler.png ├── euler.tex ├── flux_surface.png ├── flux_surface.tex ├── flux_surface_dft.png ├── flux_surface_dft.tex ├── flux_surface_stellsym.png ├── flux_surface_stellsym.tex ├── grid_theta.png ├── grid_theta.tex ├── grid_zeta.png ├── grid_zeta.tex ├── hermitian.png ├── hermitian.tex ├── hermitian_sum.png ├── hermitian_sum.tex ├── magn_axis.png ├── magn_axis.tex ├── magn_axis_dft.png ├── magn_axis_dft.tex ├── magn_axis_stellsym.png ├── magn_axis_stellsym.tex ├── phi.png ├── phi.tex ├── pnglatex ├── redft00.png ├── redft00.tex ├── redft01.png ├── redft01.tex ├── redft10.png ├── redft10.tex ├── redft11.png ├── redft11.tex ├── rodft00.png ├── rodft00.tex ├── rodft01.png ├── rodft01.tex ├── rodft10.png ├── rodft10.tex ├── rodft11.png ├── rodft11.tex ├── sin_cos_add.png ├── sin_cos_add.tex ├── true_2d_idct.png ├── true_2d_idct.tex ├── true_2d_idct_kernel.png ├── true_2d_idct_kernel.tex ├── vmec_2d_fc.png └── vmec_2d_fc.tex ├── img ├── array_structures.png ├── array_structures.svg ├── axis_R.png ├── flux_surfaces_w7x_ref_163_1_10_50_98_cut_small.png ├── plot_1d_redft_examples.py ├── plot_1d_rodft_examples.py ├── plot_axis_R.plt ├── redft00.png ├── redft01.png ├── redft10.png ├── redft11.png ├── rodft00.png ├── rodft01.png ├── rodft10.png └── rodft11.png ├── lcfs.dat └── src ├── app_flux_surface.c ├── app_magn_axis.c ├── app_magn_axis_stellsym.c ├── plot_lcfs_realspace.py ├── redft_symmetries.ipynb ├── redft_symmetries.py ├── test_1d_c2c.c ├── test_1d_c2r.c ├── test_1d_r2c.c ├── test_1d_redft00.c ├── test_1d_redft01.c ├── test_1d_redft10.c ├── test_1d_redft11.c ├── test_1d_rodft00.c ├── test_1d_rodft01.c ├── test_1d_rodft10.c ├── test_1d_rodft11.c ├── test_2d_c2c.c ├── test_2d_c2r.c ├── test_2d_r2c.c ├── test_2d_r2r_e10_o10.c ├── test_2d_r2r_true2d.c ├── test_util.c └── util.h /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/.pydevproject -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/README.md -------------------------------------------------------------------------------- /eqn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/Makefile -------------------------------------------------------------------------------- /eqn/c2c_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/c2c_product.png -------------------------------------------------------------------------------- /eqn/c2c_product.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/c2c_product.tex -------------------------------------------------------------------------------- /eqn/c2c_product_real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/c2c_product_real.png -------------------------------------------------------------------------------- /eqn/c2c_product_real.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/c2c_product_real.tex -------------------------------------------------------------------------------- /eqn/complex_dft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/complex_dft.png -------------------------------------------------------------------------------- /eqn/complex_dft.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/complex_dft.tex -------------------------------------------------------------------------------- /eqn/euler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/euler.png -------------------------------------------------------------------------------- /eqn/euler.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/euler.tex -------------------------------------------------------------------------------- /eqn/flux_surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/flux_surface.png -------------------------------------------------------------------------------- /eqn/flux_surface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/flux_surface.tex -------------------------------------------------------------------------------- /eqn/flux_surface_dft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/flux_surface_dft.png -------------------------------------------------------------------------------- /eqn/flux_surface_dft.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/flux_surface_dft.tex -------------------------------------------------------------------------------- /eqn/flux_surface_stellsym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/flux_surface_stellsym.png -------------------------------------------------------------------------------- /eqn/flux_surface_stellsym.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/flux_surface_stellsym.tex -------------------------------------------------------------------------------- /eqn/grid_theta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/grid_theta.png -------------------------------------------------------------------------------- /eqn/grid_theta.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/grid_theta.tex -------------------------------------------------------------------------------- /eqn/grid_zeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/grid_zeta.png -------------------------------------------------------------------------------- /eqn/grid_zeta.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/grid_zeta.tex -------------------------------------------------------------------------------- /eqn/hermitian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/hermitian.png -------------------------------------------------------------------------------- /eqn/hermitian.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/hermitian.tex -------------------------------------------------------------------------------- /eqn/hermitian_sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/hermitian_sum.png -------------------------------------------------------------------------------- /eqn/hermitian_sum.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/hermitian_sum.tex -------------------------------------------------------------------------------- /eqn/magn_axis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/magn_axis.png -------------------------------------------------------------------------------- /eqn/magn_axis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/magn_axis.tex -------------------------------------------------------------------------------- /eqn/magn_axis_dft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/magn_axis_dft.png -------------------------------------------------------------------------------- /eqn/magn_axis_dft.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/magn_axis_dft.tex -------------------------------------------------------------------------------- /eqn/magn_axis_stellsym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/magn_axis_stellsym.png -------------------------------------------------------------------------------- /eqn/magn_axis_stellsym.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/magn_axis_stellsym.tex -------------------------------------------------------------------------------- /eqn/phi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/phi.png -------------------------------------------------------------------------------- /eqn/phi.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/phi.tex -------------------------------------------------------------------------------- /eqn/pnglatex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/pnglatex -------------------------------------------------------------------------------- /eqn/redft00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/redft00.png -------------------------------------------------------------------------------- /eqn/redft00.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/redft00.tex -------------------------------------------------------------------------------- /eqn/redft01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/redft01.png -------------------------------------------------------------------------------- /eqn/redft01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/redft01.tex -------------------------------------------------------------------------------- /eqn/redft10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/redft10.png -------------------------------------------------------------------------------- /eqn/redft10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/redft10.tex -------------------------------------------------------------------------------- /eqn/redft11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/redft11.png -------------------------------------------------------------------------------- /eqn/redft11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/redft11.tex -------------------------------------------------------------------------------- /eqn/rodft00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/rodft00.png -------------------------------------------------------------------------------- /eqn/rodft00.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/rodft00.tex -------------------------------------------------------------------------------- /eqn/rodft01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/rodft01.png -------------------------------------------------------------------------------- /eqn/rodft01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/rodft01.tex -------------------------------------------------------------------------------- /eqn/rodft10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/rodft10.png -------------------------------------------------------------------------------- /eqn/rodft10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/rodft10.tex -------------------------------------------------------------------------------- /eqn/rodft11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/rodft11.png -------------------------------------------------------------------------------- /eqn/rodft11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/rodft11.tex -------------------------------------------------------------------------------- /eqn/sin_cos_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/sin_cos_add.png -------------------------------------------------------------------------------- /eqn/sin_cos_add.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/sin_cos_add.tex -------------------------------------------------------------------------------- /eqn/true_2d_idct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/true_2d_idct.png -------------------------------------------------------------------------------- /eqn/true_2d_idct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/true_2d_idct.tex -------------------------------------------------------------------------------- /eqn/true_2d_idct_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/true_2d_idct_kernel.png -------------------------------------------------------------------------------- /eqn/true_2d_idct_kernel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/true_2d_idct_kernel.tex -------------------------------------------------------------------------------- /eqn/vmec_2d_fc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/vmec_2d_fc.png -------------------------------------------------------------------------------- /eqn/vmec_2d_fc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/eqn/vmec_2d_fc.tex -------------------------------------------------------------------------------- /img/array_structures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/array_structures.png -------------------------------------------------------------------------------- /img/array_structures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/array_structures.svg -------------------------------------------------------------------------------- /img/axis_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/axis_R.png -------------------------------------------------------------------------------- /img/flux_surfaces_w7x_ref_163_1_10_50_98_cut_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/flux_surfaces_w7x_ref_163_1_10_50_98_cut_small.png -------------------------------------------------------------------------------- /img/plot_1d_redft_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/plot_1d_redft_examples.py -------------------------------------------------------------------------------- /img/plot_1d_rodft_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/plot_1d_rodft_examples.py -------------------------------------------------------------------------------- /img/plot_axis_R.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/plot_axis_R.plt -------------------------------------------------------------------------------- /img/redft00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/redft00.png -------------------------------------------------------------------------------- /img/redft01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/redft01.png -------------------------------------------------------------------------------- /img/redft10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/redft10.png -------------------------------------------------------------------------------- /img/redft11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/redft11.png -------------------------------------------------------------------------------- /img/rodft00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/rodft00.png -------------------------------------------------------------------------------- /img/rodft01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/rodft01.png -------------------------------------------------------------------------------- /img/rodft10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/rodft10.png -------------------------------------------------------------------------------- /img/rodft11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/img/rodft11.png -------------------------------------------------------------------------------- /lcfs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/lcfs.dat -------------------------------------------------------------------------------- /src/app_flux_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/app_flux_surface.c -------------------------------------------------------------------------------- /src/app_magn_axis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/app_magn_axis.c -------------------------------------------------------------------------------- /src/app_magn_axis_stellsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/app_magn_axis_stellsym.c -------------------------------------------------------------------------------- /src/plot_lcfs_realspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/plot_lcfs_realspace.py -------------------------------------------------------------------------------- /src/redft_symmetries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/redft_symmetries.ipynb -------------------------------------------------------------------------------- /src/redft_symmetries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/redft_symmetries.py -------------------------------------------------------------------------------- /src/test_1d_c2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_c2c.c -------------------------------------------------------------------------------- /src/test_1d_c2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_c2r.c -------------------------------------------------------------------------------- /src/test_1d_r2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_r2c.c -------------------------------------------------------------------------------- /src/test_1d_redft00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_redft00.c -------------------------------------------------------------------------------- /src/test_1d_redft01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_redft01.c -------------------------------------------------------------------------------- /src/test_1d_redft10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_redft10.c -------------------------------------------------------------------------------- /src/test_1d_redft11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_redft11.c -------------------------------------------------------------------------------- /src/test_1d_rodft00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_rodft00.c -------------------------------------------------------------------------------- /src/test_1d_rodft01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_rodft01.c -------------------------------------------------------------------------------- /src/test_1d_rodft10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_rodft10.c -------------------------------------------------------------------------------- /src/test_1d_rodft11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_1d_rodft11.c -------------------------------------------------------------------------------- /src/test_2d_c2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_2d_c2c.c -------------------------------------------------------------------------------- /src/test_2d_c2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_2d_c2r.c -------------------------------------------------------------------------------- /src/test_2d_r2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_2d_r2c.c -------------------------------------------------------------------------------- /src/test_2d_r2r_e10_o10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_2d_r2r_e10_o10.c -------------------------------------------------------------------------------- /src/test_2d_r2r_true2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_2d_r2r_true2d.c -------------------------------------------------------------------------------- /src/test_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/test_util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanschilling/fftw_tutorial/HEAD/src/util.h --------------------------------------------------------------------------------