R/checkParamsMatrixX.R

Defines functions checkParamsMatrixX

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