rcur {rsvd} | R Documentation |
Randomized CUR matrix decomposition.
Description
Randomized CUR matrix decomposition.
Usage
rcur(A, k = NULL, p = 10, q = 0, idx_only = FALSE, rand = TRUE)
Arguments
A |
array_like; |
k |
integer; |
p |
integer, optional; |
q |
integer, optional; |
idx_only |
bool, optional; |
rand |
bool, optional; |
Details
Algorithm for computing the CUR matrix decomposition of a rectangular matrix
,
with target rank
. The input matrix is factored as
using the rid
decomposition. The factor matrix is formed using actual
columns of
, also called the partial column skeleton. The factor matrix
is formed
using actual rows of
, also called the partial row skeleton.
If a probabilistic strategy is used to compute the decomposition, otherwise a
deterministic algorithm is used.
Value
rcur
returns a list with class containing the following components:
- C
array_like;
column subset;
dimensional array.
- R
Array_like.
row subset;
dimensional array.
- U
array_like;
connector matrix;dimensional array.
- C.idx
array_like;
index set of theselected columns used to form
.
- R.idx
array_like;
index set of theselected rows used to form
.
- C.scores
array_like;
scores of the selected columns.- R.scores
array_like;
scores of the selected rows.
Author(s)
N. Benjamin Erichson, erichson@berkeley.edu
References
[1] N. B. Erichson, S. Voronin, S. L. Brunton and J. N. Kutz. 2019. Randomized Matrix Decompositions Using R. Journal of Statistical Software, 89(11), 1-48. doi: 10.18637/jss.v089.i11.
[2] N. Halko, P. Martinsson, and J. Tropp. "Finding structure with randomness: probabilistic algorithms for constructing approximate matrix decompositions" (2009). (available at arXiv https://arxiv.org/abs/0909.4061).
See Also
Examples
## Not run:
# Load test image
data('tiger')
# Compute (column) randomized interpolative decompsition
# Note that the image needs to be transposed for correct plotting
out <- rcur(tiger, k = 150)
# Reconstruct image
tiger.re <- out$C %*% out$U %*% out$R
# Compute relative error
print(norm(tiger-tiger.re, 'F') / norm(tiger, 'F'))
# Plot approximated image
image(tiger.re, col = gray((0:255)/255))
## End(Not run)