1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use crate::{DistributionError, GammaError, RandomVariable};
#[derive(Clone, Debug, PartialEq)]
pub struct GammaParams {
shape: f64,
scale: f64,
}
impl GammaParams {
pub fn new(shape: f64, scale: f64) -> Result<Self, DistributionError> {
if shape <= 0.0 {
return Err(DistributionError::InvalidParameters(
GammaError::ShapeMustBePositive.into(),
));
}
if scale <= 0.0 {
return Err(DistributionError::InvalidParameters(
GammaError::ScaleMustBePositive.into(),
));
}
Ok(Self { shape, scale })
}
pub fn shape(&self) -> f64 {
self.shape
}
pub fn scale(&self) -> f64 {
self.scale
}
}
impl RandomVariable for GammaParams {
type RestoreInfo = ();
fn transform_vec(&self) -> (Vec<f64>, Self::RestoreInfo) {
(vec![self.shape, self.scale], ())
}
fn len(&self) -> usize {
2usize
}
fn restore(v: &[f64], _: &Self::RestoreInfo) -> Result<Self, DistributionError> {
Self::new(v[0], v[1])
}
}