-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://euler.mathematik.tu-chemnitz.de/repos/nfft/lib/branches/NFFT-2@4236 c8b3e4ef-9df4-0310-9d76-b6dd82e1323a
- Loading branch information
Showing
43 changed files
with
2,105 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
% NNFFT | ||
% | ||
% Files | ||
% FFT_OUT_OF_PLACE - FFT flag | ||
% FFTW_ESTIMATE - FFT flag | ||
% FFTW_MEASURE - FFT flag | ||
% FG_PSI - Precompuation flag | ||
% nnfft_display - display plan values | ||
% nnfft_finalize - Finalize plan | ||
% nnfft_get_f - Get function values from plan | ||
% nnfft_get_f_hat - Get Fourier coefficients from plan | ||
% nnfft_get_x - Get nodes from plan | ||
% nnfft_init - Initialise plans | ||
% nnfft_init_guru - Initialise plans | ||
% nnfft_init_1d - Initialise plans | ||
% nnfft_set_f - Set function values in plan | ||
% nnfft_set_f_hat - Set Fourier coefficients in plan | ||
% nnfft_set_x - Set nodes in plan | ||
% nnfft_set_v - Set nodes in plan | ||
% nnfft_trafo - nonequispaced fast Fourier transformat | ||
% nnfft_trafo_direct - nonequispaced fast diskret Fourie transformat | ||
% nnfftmex - Gateway function to NFFT module from NFFT3 | ||
% PRE_FG_PSI - Precomputation flag | ||
% PRE_FULL_PSI - Precomputation flag | ||
% PRE_LIN_PSI - Precomputation flag | ||
% PRE_PHI_HUT - Precomputation flag | ||
% PRE_PSI - Precomputation flag | ||
% simple_test - Example program: Basic usage principles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
% FFTW_ESTIMATE FFT flag | ||
% Valid for FFTW3 | ||
% | ||
% Copyright (c) 2002, 2012 Jens Keiner, Stefan Kunis, Daniel Potts | ||
|
||
% Copyright (c) 2002, 2012 Jens Keiner, Stefan Kunis, Daniel Potts | ||
% | ||
% This program is free software; you can redistribute it and/or modify it under | ||
% the terms of the GNU General Public License as published by the Free Software | ||
% Foundation; either version 2 of the License, or (at your option) any later | ||
% version. | ||
% | ||
% This program is distributed in the hope that it will be useful, but WITHOUT | ||
% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
% FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
% details. | ||
% | ||
% You should have received a copy of the GNU General Public License along with | ||
% this program; if not, write to the Free Software Foundation, Inc., 51 | ||
% Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
% | ||
% $Id: FFTW_ESTIMATE.m 3776 2012-06-03 13:29:25Z keiner $ | ||
function f = FFTW_ESTIMATE() | ||
|
||
f = bitshift(1, 6); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
%FFTW_MEASURE FFT flag | ||
% Valid for FFTW3 | ||
% | ||
% Copyright (c) 2002, 2012 Jens Keiner, Stefan Kunis, Daniel Potts | ||
|
||
% Copyright (c) 2002, 2012 Jens Keiner, Stefan Kunis, Daniel Potts | ||
% | ||
% This program is free software; you can redistribute it and/or modify it under | ||
% the terms of the GNU General Public License as published by the Free Software | ||
% Foundation; either version 2 of the License, or (at your option) any later | ||
% version. | ||
% | ||
% This program is distributed in the hope that it will be useful, but WITHOUT | ||
% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
% FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
% details. | ||
% | ||
% You should have received a copy of the GNU General Public License along with | ||
% this program; if not, write to the Free Software Foundation, Inc., 51 | ||
% Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
% | ||
% $Id: FFTW_MEASURE.m 3776 2012-06-03 13:29:25Z keiner $ | ||
function f = FFTW_MEASURE() | ||
|
||
f = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
%FFT_OUT_OF_PLACE FFT flag | ||
% If this flag is set, FFTW uses disjoint input/output vectors. | ||
% | ||
% Copyright (c) 2002, 2012 Jens Keiner, Stefan Kunis, Daniel Potts | ||
|
||
% Copyright (c) 2002, 2012 Jens Keiner, Stefan Kunis, Daniel Potts | ||
% | ||
% This program is free software; you can redistribute it and/or modify it under | ||
% the terms of the GNU General Public License as published by the Free Software | ||
% Foundation; either version 2 of the License, or (at your option) any later | ||
% version. | ||
% | ||
% This program is distributed in the hope that it will be useful, but WITHOUT | ||
% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
% FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
% details. | ||
% | ||
% You should have received a copy of the GNU General Public License along with | ||
% this program; if not, write to the Free Software Foundation, Inc., 51 | ||
% Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
% | ||
% $Id: FFT_OUT_OF_PLACE.m 3776 2012-06-03 13:29:25Z keiner $ | ||
function f = FFT_OUT_OF_PLACE() | ||
|
||
f = bitshift(1, 9); |
Oops, something went wrong.