#include "MantidAlgorithms/RealFFT.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidAPI/TextAxis.h"
#include "MantidAPI/WorkspaceFactory.h"
#include "MantidKernel/Exception.h"
#include <gsl/gsl_errno.h>
#include <gsl/gsl_fft_halfcomplex.h>
#include <gsl/gsl_fft_real.h>
#include <algorithm>
#include <cmath>
#include <functional>
#include <numeric>
#include <sstream>
#include "MantidKernel/BoundedValidator.h"
#include "MantidKernel/ListValidator.h"
#include "MantidHistogramData/LinearGenerator.h"
Go to the source code of this file.
|
#define | IMAG(z, i) ((z)[2 * (i) + 1]) |
|
#define | REAL(z, i) ((z)[2 * (i)]) |
|
◆ IMAG
#define IMAG |
( |
|
z, |
|
|
|
i |
|
) |
| ((z)[2 * (i) + 1]) |
◆ REAL
#define REAL |
( |
|
z, |
|
|
|
i |
|
) |
| ((z)[2 * (i)]) |