ourMELONS/R/indMixWrapper.R
2023-08-09 14:17:17 +02:00

7 lines
213 B
R

indMixWrapper <- function(c, npops, fixedK = FALSE, verbose = FALSE) {
if (fixedK) {
stop("indMix_fixK() not yet implemented.") # TODO: translate indMix_fixK.m
} else {
indMix(c, npops, verbose)
}
}