1%NFFT_INIT_GURU Initialise plans
2%   Matlab might run into a segmentation violation for wrong parameters
3%
4%   nfft_init_guru(d,N1,...,Nd,M,n1,...,nd,m,flags,fftw_flags)
5%
6%   d            spatial dimension
7%   N1,...,Nd    bandwidths
8%   M            number of nodes
9%   n1,...,nd    fft lengths
10%   m            cut-off parameter
11%   flags   PRE_PHI_HUT | {FG_PSI, PRE_LIN_PSI, PRE_FG_PSI, PRE_PSI,
12%	             PRE_FULL_PSI} | FFT_OUT_OF_PLACE
13%   fftw_flags   {FFTW_ESTIMATE, FFTW_MEASURE}
14%
15%   Copyright (c) 2002, 2017 Jens Keiner, Stefan Kunis, Daniel Potts
16
17% Copyright (c) 2002, 2017 Jens Keiner, Stefan Kunis, Daniel Potts
18%
19% This program is free software; you can redistribute it and/or modify it under
20% the terms of the GNU General Public License as published by the Free Software
21% Foundation; either version 2 of the License, or (at your option) any later
22% version.
23%
24% This program is distributed in the hope that it will be useful, but WITHOUT
25% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
26% FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
27% details.
28%
29% You should have received a copy of the GNU General Public License along with
30% this program; if not, write to the Free Software Foundation, Inc., 51
31% Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
32function p = nfft_init_guru(varargin)
33
34p = nfftmex('init_guru',varargin);
35