Function myml::gmm::gmm

source ·
pub fn gmm<F, const K: usize>(
    x: ArrayView<'_, F, Ix2>,
    mus: &[Array<F, Ix1>; K],
    covs: &[Array<F, Ix2>; K],
    phis: &[F; K],
) -> Option<Array<F, Ix1>>
where F: Float + NdFloat + LinalgScalar + Lapack,
Expand description

混合ガウスモデルの確率密度関数

引数

  • x: ベクトル (1,D)
  • mus: ベクトル [(1,D); K] (平均)
  • covs: 行列 [(D,D); K] (共分散行列)