EvdT Class |
public abstract class Evd<T> : ISolver<T> where T : struct, new(), IEquatable<T>, IFormattable
The EvdT type exposes the following members.
| Name | Description | |
|---|---|---|
| D | Gets or sets the block diagonal eigenvalue matrix. | |
| Determinant | Gets the absolute value of determinant of the square matrix for which the EVD was computed. | |
| EigenValues | Gets or sets the eigen values (λ) of matrix in ascending value. | |
| EigenVectors | Gets or sets eigenvectors. | |
| IsFullRank | Gets a value indicating whether the matrix is full rank or not. | |
| IsSymmetric | Gets or sets a value indicating whether matrix is symmetric or not | |
| Rank | Gets the effective numerical matrix rank. |
| Name | Description | |
|---|---|---|
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| Solve(MatrixT) | Solves a system of linear equations, AX = B, with A EVD factorized. | |
| Solve(VectorT) | Solves a system of linear equations, Ax = b, with A EVD factorized. | |
| Solve(MatrixT, MatrixT) | Solves a system of linear equations, AX = B, with A EVD factorized. | |
| Solve(VectorT, VectorT) | Solves a system of linear equations, Ax = b, with A EVD factorized. | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |