waves
Basic FE playground
wRandomVariable.h
Go to the documentation of this file.
1 #ifndef KATOPTRON_RANDOMVARIABLE_H
2 #define KATOPTRON_RANDOMVARIABLE_H
3 
4 #include "katoptron.h"
5 #include <vector>
6 
7 namespace katoptron
8 {
9 
14 {
15 public:
16  std::vector<double> values;
17  size_t sizex;
18  size_t sizey;
19  double *arr;
20 
21  RandomVariable(std::vector<double> const &_values) : values(_values){};
22 };
23 } // namespace katoptron
24 
25 #endif //KATOPTRON_RANDOMVARIABLE_H
katoptron::RandomVariable::arr
double * arr
Definition: wRandomVariable.h:19
KATOPTRON_API
#define KATOPTRON_API
Definition: katoptron.h:13
katoptron::RandomVariable::RandomVariable
RandomVariable(std::vector< double > const &_values)
Definition: wRandomVariable.h:21
katoptron
katoptron namespace
Definition: Algebraic.h:18
katoptron::RandomVariable
Class containing the realisations of the random Gaussian variables.
Definition: wRandomVariable.h:13
katoptron::RandomVariable::values
std::vector< double > values
Definition: wRandomVariable.h:16
katoptron::RandomVariable::sizey
size_t sizey
Definition: wRandomVariable.h:18
katoptron.h
katoptron::RandomVariable::sizex
size_t sizex
Definition: wRandomVariable.h:17