Tor 0.4.9.1-alpha-dev
|
#include <prob_distr.h>
Data Fields | |
const char * | name |
double(* | sample )(const struct dist_t *) |
double(* | cdf )(const struct dist_t *, double x) |
double(* | sf )(const struct dist_t *, double x) |
double(* | icdf )(const struct dist_t *, double p) |
double(* | isf )(const struct dist_t *, double p) |
Set of operations on a potentially parametric family of distributions. In the parlance of C++, this would be called a ‘vtable’ and the members are virtual member functions.
Definition at line 128 of file prob_distr.h.
double(* cdf) (const struct dist_t *, double x) |
Definition at line 131 of file prob_distr.h.
double(* icdf) (const struct dist_t *, double p) |
Definition at line 133 of file prob_distr.h.
double(* isf) (const struct dist_t *, double p) |
Definition at line 134 of file prob_distr.h.
const char* name |
Definition at line 129 of file prob_distr.h.
double(* sample) (const struct dist_t *) |
Definition at line 130 of file prob_distr.h.
double(* sf) (const struct dist_t *, double x) |
Definition at line 132 of file prob_distr.h.