| svd_pseudo_inverse | R Documentation |
Computes A^{+} via SVD, optionally using the split-merge variant
for large matrices. Singular values below
.Machine$double.eps * d[1] * max(dim(A)) are treated as zero.
svd_pseudo_inverse(A, use_split_merge = TRUE, verbose = FALSE)
A |
Numeric square matrix. |
use_split_merge |
Logical. If |
verbose |
Logical. If |
This is an internal helper for invert_matrix(); end users should
call invert_matrix() instead.
A list with elements inverse (the pseudo-inverse matrix),
condition_number, effective_rank, and method
(character: "standard SVD" or "split-merge SVD").
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.