#include "YODA/Exceptions.h"
#include "YODA/Dbn.h"
#include "YODA/Transformation.h"
#include "YODA/Utils/MathUtils.h"
#include "YODA/Utils/StringUtils.h"
#include <cmath>
#include <map>
#include <string>
#include <regex>
#include <utility>
Go to the source code of this file.
|
namespace | YODA |
| Anonymous namespace to limit visibility.
|
|
|
|
Estimate | YODA::operator+ (Estimate lhs, const Estimate &rhs) |
| Add two Estimate objects.
|
|
Estimate | YODA::operator+ (Estimate lhs, Estimate &&rhs) |
| Add two Estimate objects.
|
|
Estimate | YODA::operator- (Estimate lhs, const Estimate &rhs) |
| Subtract two Estimate objects.
|
|
Estimate | YODA::operator- (Estimate lhs, Estimate &&rhs) |
| Subtract two Estimate objects.
|
|
Estimate | YODA::divide (const Estimate &numer, const Estimate &denom, const std::string &pat_uncorr="^stat|^uncor") |
| Divide two Estimate objects.
|
|
Estimate | YODA::operator/ (const Estimate &numer, const Estimate &denom) |
| Divide two Estimate objects.
|
|
Estimate | YODA::operator/ (Estimate &&numer, const Estimate &denom) |
| Divide two Estimate objects.
|
|
Estimate | YODA::operator/ (const Estimate &numer, Estimate &&denom) |
| Divide two Estimate objects.
|
|
Estimate | YODA::operator/ (Estimate &&numer, Estimate &&denom) |
| Divide two Estimate objects.
|
|
Estimate | YODA::efficiency (const Estimate &accepted, const Estimate &total, const std::string &pat_uncorr="^stat|^uncor") |
| Divide two Estimate objects using binomial statistics.
|
|