R/myICA.R

Defines functions myICA

Documented in myICA

myICA <- function(Xn, k){
    if(k == 1){
        .normMat(ICA(Xn, J=k+1)$S, "column")[,1]
    }else{
        .normMat(ICA(Xn, J=k)$S, "column")
    }
}

Try the mwTensor package in your browser

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

mwTensor documentation built on July 9, 2023, 6:42 p.m.