1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
\name{runRandomSVD}
\alias{runRandomSVD}
\title{Approximate SVD with \pkg{rsvd}}
\description{Perform a randomized singular value decomposition.}
\usage{
runRandomSVD(x, k=5, nu=k, nv=k, center=FALSE, scale=FALSE, deferred=FALSE,
..., fold=Inf, BPPARAM=SerialParam())
}
\arguments{
\item{x}{A numeric matrix-like object to use in the SVD.}
\item{k}{Integer scalar specifying the number of singular values to return.}
\item{nu}{Integer scalar specifying the number of left singular vectors to return.}
\item{nv}{Integer scalar specifying the number of right singular vectors to return.}
\item{center}{A logical scalar indicating whether columns should be centered.
Alternatively, a numeric vector or \code{NULL} - see \code{?"\link{BiocSingular-options}"}.}
\item{scale}{A logical scalar indicating whether columns should be scaled.
Alternatively, a numeric vector or \code{NULL} - see \code{?"\link{BiocSingular-options}"}.}
\item{deferred}{Logical scalar indicating whether centering/scaling should be deferred, see \code{?"\link{BiocSingular-options}"}.}
\item{...}{Further arguments to pass to \code{\link{rsvd}}.}
\item{fold}{Numeric scalar specifying the minimum fold difference between dimensions of \code{x} to compute the cross-product,
see \code{?"\link{BiocSingular-options}"}.}
\item{BPPARAM}{A \linkS4class{BiocParallelParam} object specifying how parallelization should be performed.}
}
\details{
All multiplication operations in \code{\link{rsvd}} involving \code{x} will be parallelized according to the supplied \code{BPPARAM}.
The dimensionality of the working subspace is defined as the maximum of \code{k}, \code{nu} and \code{nv}, plus the \code{q} specified in \code{...}.
}
\value{
A list containing:
\itemize{
\item \code{d}, a numeric vector of the first \code{k} singular values.
\item \code{u}, a numeric matrix with \code{nrow(x)} rows and \code{nu} columns.
Each column contains a left singular vector.
\item \code{u}, a numeric matrix with \code{ncol(x)} rows and \code{nv} columns.
Each column contains a right singular vector.
}
}
\author{
Aaron Lun
}
\seealso{
\code{\link{rsvd}} for the underlying algorithm.
}
\examples{
a <- matrix(rnorm(100000), ncol=20)
out <- runRandomSVD(a)
str(out)
}
|