R/ica.R

Defines functions ica

Documented in ica

ica <- 
  function(X, nc, method = c("fast", "imax", "jade"), ...){
    if(method[1] == "fast"){
      return(icafast(X, nc, ...))
    } else if(method[1] == "imax"){
      return(icaimax(X, nc, ...))
    } else {
      return(icajade(X, nc, ...))
    }
  }

Try the ica package in your browser

Any scripts or data that you put into this service are public.

ica documentation built on July 9, 2022, 1:07 a.m.