R/eigenVc.R

Defines functions eigenVc

Documented in eigenVc

eigenVc <- function(xmat, wp, d, r, itmax, err) {
    .Call(C_eigenV,
          xmatC = as.double(xmat),
          wpC = as.double(wp),
          dC = as.integer(d),
          rC = as.integer(r),
          itmaxC = as.integer(itmax),
          errC = as.double(err));
}

Try the psvd package in your browser

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

psvd documentation built on Oct. 25, 2024, 9:07 a.m.