R/s2faFitCheckArgs.R

Defines functions s2faFitCheckArgs

s2faFitCheckArgs <- function(X_t, 
                             Z_t, 
                             type, 
                             lambdaRidge) {
  type <- tolower(type)
  checkType(type)
  checkLambdaRidge(lambdaRidge)
  checkMatrix(X_t)
  checkMatrix(Z_t)
  checkMatrices(X_t,Z_t)
}
aciobanusebi/s2fa documentation built on Aug. 7, 2021, 6:38 a.m.