Scythe-1.0.3
|
The result of a singular value decomposition. More...
#include <scythestat/ide.h>
Public Attributes | |
Matrix | d |
Matrix | U |
Matrix | Vt |
The result of a singular value decomposition.
Objects of this type hold the results of a singular value decomposition (SVD) of an matrix
, as returned by svd(). The SVD takes the form:
. SVD objects contain d, which holds the singular values of
(the diagonal of
) in descending order. Furthermore, depending on the options passed to svd(), they may hold some or all of the left singular vectors of
in U and some or all of the right singular vectors of
in Vt.