| split_merge_svd_row | R Documentation |
Computes an SVD of a matrix X by partitioning its rows into
s blocks, taking the SVD of each block, and merging the results.
More numerically stable than direct svd() for ill-conditioned
large matrices.
split_merge_svd_row(X, s = 10, verbose = FALSE)
X |
Numeric matrix. |
s |
Integer. Number of row partitions (default 10). |
verbose |
Logical. Currently unused; retained for API compatibility. |
This is an internal helper for invert_matrix() and
svd_pseudo_inverse(); end users typically should not call it
directly.
A list with elements u, d, v, matching the
structure returned by base svd.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.