14 #include <unsupported/Eigen/FFT>
18 #include "eckit/config/Configuration.h"
19 #include "eckit/exception/Exceptions.h"
28 const eckit::Configuration & config)
29 : resol_(resol.npoints()),
30 rscale_(1.0/config.getDouble(
"length_scale"))
33 unsigned int size =
resol_/2+1;
34 std::vector<double> locfct(
resol_);
35 for (
unsigned int jj = 0; jj <
resol_; ++jj) {
37 locfct[jj] = std::exp(-0.5*zz*zz);
40 Eigen::FFT<double> fft;
41 std::vector<std::complex<double> > four(size);
42 fft.fwd(four, locfct);
45 for (
unsigned int jj = 0; jj < size; ++jj) {
46 coefs_[jj] = std::real(four[jj]);
52 unsigned int size =
resol_/2+1;
53 Eigen::FFT<double> fft;
54 std::vector<std::complex<double> > four(size);
56 for (
unsigned int jj = 0; jj < size; ++jj) {
57 four[jj] *= std::sqrt(
coefs_[jj]);
63 unsigned int size =
resol_/2+1;
64 Eigen::FFT<double> fft;
65 std::vector<std::complex<double> > four(size);
67 for (
unsigned int jj = 0; jj < size; ++jj) {
74 os <<
"Localization with Gaussian, lengthscale = " << 1.0/
rscale_;
Increment Class: Difference between two states.
std::vector< double > & asVector()
LocalizationMatrixL95(const Resolution &, const eckit::Configuration &)
const unsigned int resol_
void print(std::ostream &) const override
std::vector< double > coefs_
void multiply(IncrementL95 &) const override
void randomize(IncrementL95 &) const override
The namespace for the L95 model.