Type Alias MatrixCovariance
Source pub type MatrixCovariance = Covariance<Matrix<f64>>;
Expand description
Dense covariance matrix parameter \(\bm{\Sigma}\).
pub struct MatrixCovariance(pub ArrayBase<OwnedRepr<f64>, Dim<[usize; 2]>>);
Construct an \(n\)-dimensional covariance matrix parameter \(\bm{\Sigma}\).
§Arguments
Sigma - the covariance matrix \(\bm{\Sigma}\).
§Constraints
- The covariance matrix is square.
- The covariance matrix is positive semi-definite.
Returns a reference to the parameter’s value.
Read more
Converts the parameter into it’s value.
Returns the constraints associated with this parameter type.