|
Monte Carlo Integration Library 1.0
High-performance Monte Carlo methods for numerical integration and optimization
|
Result of Monte Carlo mean estimation. More...
#include <MCMeanEstimator.hpp>
Public Attributes | |
| double | mean = 0.0 |
| Estimated mean: μ̂ = (1/N) ∑ f(xᵢ) [only domain points]. | |
| double | stderr = 0.0 |
| Standard error (i.i.d. | |
| std::size_t | n_samples = 0 |
| Total samples evaluated (both inside and outside domain). | |
| std::size_t | n_inside = 0 |
| Samples that fell inside the domain (used for mean). | |
Result of Monte Carlo mean estimation.
| dim | Dimensionality of the domain. |
Definition at line 28 of file MCMeanEstimator.hpp.
| double mc::estimators::MeanEstimate< dim >::mean = 0.0 |
Estimated mean: μ̂ = (1/N) ∑ f(xᵢ) [only domain points].
Definition at line 30 of file MCMeanEstimator.hpp.
| std::size_t mc::estimators::MeanEstimate< dim >::n_inside = 0 |
Samples that fell inside the domain (used for mean).
Definition at line 36 of file MCMeanEstimator.hpp.
| std::size_t mc::estimators::MeanEstimate< dim >::n_samples = 0 |
Total samples evaluated (both inside and outside domain).
Definition at line 34 of file MCMeanEstimator.hpp.
| double mc::estimators::MeanEstimate< dim >::stderr = 0.0 |