Singular Value Decomposition Object
- DESCRIPTION:
-
These are objects of class
"svd.Matrix"
They represent the singular value decomposition of a matrix.
- GENERATION:
-
This class of objects is returned from the svd.Matrix function
to represent a singular value decomposition.
- METHODS:
-
The "svd.Matrix" class of objects has methods for the following generic
functions:
det, norm, rcond, solve
- STRUCTURE:
-
The following components must be included in a legitimate "svd.Matrix"
object:
- values:
-
the vector of singular values (in decreasing order of magnitude).
- vectors:
-
the singular vectors of the matrix.
A list with two components labeled left and right, each of which
contains the corresponding orthonormal matrix of singular vectors stored
columnwise.
- SEE ALSO:
-
svd.Matrix
.