R/segTraj_initialisePhi.R

Defines functions initialisePhi

Documented in initialisePhi

# initialisePhi
#' initialisePhi is the constructor for a set of parameters for a segclust model
#' @param P number of classes
#' @param val the value used for initialisation default is -Inf
#' @return a set of parameter phi
initialisePhi <- function(P, val=-Inf)
{
  return(list(mu = matrix(val, nrow = 2, ncol=P),
              sigma = matrix(val, nrow = 2, ncol=P ),
              prop = rep(1/P, P) ))
}

Try the segclust2d package in your browser

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

segclust2d documentation built on Aug. 21, 2023, 9:10 a.m.