ourMELONS/R/indMixWrapper.R

8 lines
193 B
R
Raw Normal View History

2023-08-09 13:12:18 +02:00
indMixWrapper <- function(c, npops, fixedK = FALSE) {
if (fixedK) {
stop("indMix_fixK() not yet implemented.") # TODO: translate indMix_fixK.m
2023-08-09 13:12:18 +02:00
} else {
indMix(c, npops, TRUE)
}
}