S3L_fft_free_setup deallocates internal memory associated with setup_id by a previous call to S3L_fft_setup.
The C and Fortran syntax for S3L_fft_free_setup are shown below.
#include <s3l/s3l-c.h> #include <s3l/s3l_errno-c.h> int S3L_fft_free_setup(setup_id) int setup_id |
include `s3l/s3l-f.h' include `s3l/s3l_errno-f.h' subroutine S3L_fft_free_setup(setup_id, ier) integer*4 setup_id integer*4 ier |
setup_id - Scalar integer variable. Use the value returned by the S3L_fft_setup call for this argument.
This function uses the following argument for output:
ier (Fortran only) - When called from a Fortran program, this function returns error status in ier.
On success, S3L_fft_free_setup returns S3L_SUCCESS.
The following condition will cause S3L_fft_free_setup to terminate and return the associated error code:
S3L_ERR_ARG_SETUP - The setup_id supplied does not correspond to a valid FFT setup.
../examples/s3l/fft/fft.c ../examples/s3l/fft/ex_fft1.c ../examples/s3l/fft/ex_fft2.c ../examples/s3l/fft-f/fft.f ../examples/s3l/fft-f/ex_fft1.f
S3L_fft_setup(3) S3L_fft(3) S3L_ifft(3) S3L_fft_detailed(3)