R/checkParamsMatrixZ.R

Defines functions checkParamsMatrixZ

checkParamsMatrixZ <- function(p,Z_t) {
  # p - checked
  # Z_t - checked
  nDimZ <- ncol(Z_t)
  if(nDimZ != p$nDimZ) {
    stop("problem with number of dimensions in p")
  }
}
aciobanusebi/s2fa documentation built on Aug. 7, 2021, 6:38 a.m.