JaggedGeneralizedEigenvalueDecomposition Class |
Namespace: Accord.Math.Decompositions
The JaggedGeneralizedEigenvalueDecomposition type exposes the following members.
Name | Description | |
---|---|---|
JaggedGeneralizedEigenvalueDecomposition |
Constructs a new generalized eigenvalue decomposition.
|
Name | Description | |
---|---|---|
Betas | Returns the beta values. | |
DiagonalMatrix | Returns the block diagonal eigenvalue matrix. | |
Eigenvectors | Returns the eigenvector matrix. | |
ImaginaryAlphas | Returns the imaginary parts of the alpha values. | |
ImaginaryEigenvalues | Returns the imaginary parts of the eigenvalues. | |
IsDegenerate |
Returns true if the eigenvalue problem is degenerate (ill-posed).
| |
IsSingular |
Returns true if matrix B is singular.
| |
Rank |
Returns the effective numerical matrix rank.
| |
RealAlphas | Returns the real parts of the alpha values. | |
RealEigenvalues | Returns the real parts of the eigenvalues. |
Name | Description | |
---|---|---|
Clone |
Creates a new object that is a copy of the current instance.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
HasMethod |
Checks whether an object implements a method with the given name.
(Defined by ExtensionMethods.) | |
IsEqual |
Compares two objects for equality, performing an elementwise
comparison if the elements are vectors or matrices.
(Defined by Matrix.) | |
To(Type) | Overloaded.
Converts an object into another type, irrespective of whether
the conversion can be done at compile time or not. This can be
used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.) | |
ToT | Overloaded.
Converts an object into another type, irrespective of whether
the conversion can be done at compile time or not. This can be
used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.) |
A generalized eigenvalue problem is the problem of finding a vector v that obeys A * v = λ * B * v where A and B are matrices. If v obeys this equation, with some λ, then we call v the generalized eigenvector of A and B, and λ is called the generalized eigenvalue of A and B which corresponds to the generalized eigenvector v. The possible values of λ, must obey the identity det(A - λ*B) = 0.
Part of this code has been adapted from the original EISPACK routines in Fortran.
References: