R/matrix.mle.R

Defines functions matrix.mle

Documented in matrix.mle

matrix.mle <- function(X, distr = "MN") {
  if ( distr == "MN" ) {
    res <- MN::mn.mle(X)
  } else if ( distr == "mfisher" ) {
    res <- Directional::matrixfisher.mle(X)
  }
  res
}

Try the MLE package in your browser

Any scripts or data that you put into this service are public.

MLE documentation built on April 3, 2025, 10:02 p.m.