Gromacs
2024.3
|
#include <gromacs/random/tabulatednormaldistribution.h>
Normal distribution parameter class (mean and stddev)
Public Types | |
typedef TabulatedNormalDistribution | distribution_type |
The type of distribution the parameters describe. | |
Public Member Functions | |
param_type (result_type mean=0.0, result_type stddev=1.0) | |
Constructor. Default is classical distr. with mean 0, stddev 1. More... | |
result_type | mean () const |
Return mean parameter of normal distribution. | |
result_type | stddev () const |
Return standard deviation parameter of normal distribution. | |
bool | operator== (const param_type &x) const |
True if two sets of normal distributions parameters are identical. More... | |
bool | operator!= (const param_type &x) const |
True if two sets of normal distributions parameters are different. More... | |
|
inlineexplicit |
Constructor. Default is classical distr. with mean 0, stddev 1.
mean | Expectation value. |
stddev | Standard deviation. |
|
inline |
True if two sets of normal distributions parameters are different.
x | Instance to compare with. |
|
inline |
True if two sets of normal distributions parameters are identical.
x | Instance to compare with. |