SingularValueDecomposition overview
Public Instance Constructors
SingularValueDecomposition Constructor | Construct the singular value decomposition |
Public Instance Properties
S | Return the diagonal matrix of singular values |
SingularValues | Return the one-dimensional array of singular values |
Public Instance Methods
Condition | Two norm condition number |
Equals (inherited from Object) | Determines whether the specified Object is equal to the current Object. |
GetHashCode (inherited from Object) | Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. |
GetType (inherited from Object) | Gets the Type of the current instance. |
GetU | Return the left singular vectors |
GetV | Return the right singular vectors |
Norm2 | Two norm |
Rank | Effective numerical matrix rank |
ToString (inherited from Object) | Returns a String that represents the current Object. |
Private Instance Fields
m | Row and column dimensions. @serial row dimension. @serial column dimension. |
n | Row and column dimensions. @serial row dimension. @serial column dimension. |
s | Array for internal storage of singular values. @serial internal storage of singular values. |
U | Arrays for internal storage of U and V. @serial internal storage of U. @serial internal storage of V. |
V | Arrays for internal storage of U and V. @serial internal storage of U. @serial internal storage of V. |