|
Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
|
#include <cmath>#include <cstddef>#include <iomanip>#include <iostream>#include <limits>#include <memory>#include <random>#include <stdexcept>#include <string>#include <vector>#include <algorithm>
Go to the source code of this file.
Classes | |
| struct | IMarginalDistribution |
| Abstract interface for scalar marginal distributions. More... | |
| struct | IDecomposition |
| class | CorrelationMatrixValidator |
| class | CholeskyDecomposition |
| class | GaussianMarginal |
| One-dimensional Gaussian marginal distribution. More... | |
| class | DistributionFactory |
| class | JointDistribution |
| Multivariate distribution represented through marginals and a copula. More... | |
Typedefs | |
| using | Matrix = std::vector< std::vector< double > > |
| using | Vector = std::vector< double > |
Functions | |
| Matrix | readMatrixFromStdin () |
| void | printVector (const Vector &v) |
| void | printUsage (const char *prog) |
| int | main (int argc, char **argv) |
| using Matrix = std::vector<std::vector<double> > |
Definition at line 13 of file correlated_rng.cpp.
| using Vector = std::vector<double> |
Definition at line 14 of file correlated_rng.cpp.
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
Definition at line 188 of file correlated_rng.cpp.
| void printUsage | ( | const char * | prog | ) |
Definition at line 175 of file correlated_rng.cpp.
| void printVector | ( | const Vector & | v | ) |
Definition at line 35 of file correlated_rng.cpp.
| Matrix readMatrixFromStdin | ( | ) |
Definition at line 19 of file correlated_rng.cpp.