34 #ifndef __PDSEXPONENTIAL_H__ 35 #define __PDSEXPONENTIAL_H__ 38 #include <pds/pdsrvglobal.h> 39 #include <pds/pdscongruential.h> 40 #include <pds/pdsvector.h> int pds_exponential_get_value(PdsExponential *X, PdsRvReal *x)
Retorna un número pseudo aleatorio exponencial, Exponential(Lambda) .
La estructura tipo PdsExponential. Esta estructura genera una variable aleatoria exponencial. Exponential(Lambda) Para usar incluir pdsrv/pdsrv.h. La función de densidad de probabilidad es: fx(x)=lambda e^{-lambda x} , x [0,oo) .
int pds_exponential_init(PdsExponential *X, PdsRvReal x0)
Inicia la variable aleatorio exponencial,.
La estructura tipo PdsCongruential. Esta estructura genera una secuencia aleatoria congruential...
void pds_exponential_destroy(PdsExponential **X)
Libera la variable aleatoria de tipo puntero PdsExponential, y la carga con NULL. ...
int pds_exponential_get_vector(PdsExponential *X, PdsVector *x)
Carga un vector con valores pseudo aleatorio exponenciales, Exponential(Lambda) .
void pds_exponential_free(PdsExponential *X)
Libera la variable aleatoria de tipo puntero PdsExponential.
int pds_exponential_get_last_value(PdsExponential *X, PdsRvReal *x)
Retorna el último número pseudo aleatorio entregado por la R.V. exponencial, Exponential(Lambda) ...
PdsExponential * pds_exponential_new(PdsRvReal Lambda)
Crea una variable aleatoria de tipo PdsExponential.