R/comp_svd.R

#' Spectral Map Analysis
#' Input V must be linear
#' @param V a matrix on the linear scale
#' @return The singular value decomposition of the double centered matrix
#' @export
comp_svd <- function(V) {
  V1 <- row_col_center(V)
  s <- svd(V1)
  return(s)
}
kristenmf/flowR documentation built on May 20, 2019, 6:15 p.m.