physbo.blm.prior.gauss module¶
-
class
physbo.blm.prior.gauss.cov_const(params=None)[source]¶ Bases:
objectisotropic variance-covariance
All elements have the same variance and are independent with each other
-
params¶ half of log of covariance
- Type
float
-
sigma2¶ covariance
- Type
float
-
prec¶ precision (= inv. of covariance)
- Type
float
-
get_cov(nbasis, params=None)[source]¶ computes the covariance
- Parameters
nbasis (int) – the number of components
params (float) – half of log of variance (default: self.params)
- Returns
nbasis-by-n-basis covariance matrix
- Return type
numpy.ndarray
-
-
class
physbo.blm.prior.gauss.gauss(nbasis, cov=None)[source]¶ Bases:
objectGaussian prior
-
nbasis¶ number of components
- Type
int
-
get_cov(params=None)[source]¶ calculates the variance-covariance matrix of priors
- Parameters
params (float) – half of log of variance (default: self.cov.params)
- Returns
- Return type
numpy.ndarray
-
get_mean(params=None)[source]¶ calculates the mean value of priors
- Parameters
params (float) – half of log of variance (not used)
- Returns
- Return type
numpy.ndarray
-