Functions | |
Eigen::MatrixXd | EnsembleKalmanFilter (Eigen::MatrixXd prior, Eigen::VectorXd measurements, Eigen::MatrixXd measurementsCov, Eigen::MatrixXd observedState) |
Ensemble Kalman Filter. | |
Eigen::MatrixXd | EnsembleKalmanFilter (PtrList< volScalarField > &prior, Eigen::VectorXd measurements, Eigen::MatrixXd measurementsCov, Eigen::MatrixXd observedState) |
Ensemble Kalman Filter. | |
double | quantile (Eigen::VectorXd samps, double p, int method=1) |
Returns quantile for a vector of samples. | |
Eigen::VectorXd | quantile (Eigen::MatrixXd samps, double p, int method=1) |
Returns quantile for a matrix of samples. | |
Eigen::MatrixXd ITHACAmuq::muq2ithaca::EnsembleKalmanFilter | ( | Eigen::MatrixXd | prior, |
Eigen::VectorXd | measurements, | ||
Eigen::MatrixXd | measurementsCov, | ||
Eigen::MatrixXd | observedState ) |
Ensemble Kalman Filter.
[in] | prior | Samples of the prior |
[in] | measurements | Measured data |
[in] | measurementsCov | Covariance matrix for the measurements, gaussian noise with zero mean is assumed |
[in] | observedState | Ensemble of the observed state |
Definition at line 7 of file muq2ithaca.C.
Eigen::MatrixXd ITHACAmuq::muq2ithaca::EnsembleKalmanFilter | ( | PtrList< volScalarField > & | prior, |
Eigen::VectorXd | measurements, | ||
Eigen::MatrixXd | measurementsCov, | ||
Eigen::MatrixXd | observedState ) |
Ensemble Kalman Filter.
[in] | prior | Samples of the prior |
[in] | measurements | Measured data |
[in] | measurementsCov | Covariance matrix for the measurements, gaussian noise with zero mean is assumed |
[in] | observedState | Ensemble of the observed state |
Definition at line 70 of file muq2ithaca.C.
Eigen::VectorXd ITHACAmuq::muq2ithaca::quantile | ( | Eigen::MatrixXd | samps, |
double | p, | ||
int | method = 1 ) |
Returns quantile for a matrix of samples.
[in] | samps | Samples, each variable on a row |
[in] | p | Quantile parameter |
[in] | method | Method used to compute quantile according to Hyndman and Fan (1986) |
Definition at line 191 of file muq2ithaca.C.
double ITHACAmuq::muq2ithaca::quantile | ( | Eigen::VectorXd | samps, |
double | p, | ||
int | method = 1 ) |
Returns quantile for a vector of samples.
[in] | samps | Samples |
[in] | p | Quantile parameter |
[in] | method | Method used to compute quantile according to Hyndman and Fan (1986) |
Definition at line 134 of file muq2ithaca.C.