QRT Class |
A class which encapsulates the functionality of the QR decomposition.
Any real square matrix A (m x n) may be decomposed as A = QR where Q is an orthogonal matrix (its columns are orthogonal unit vectors meaning QTQ = I) and R is an upper triangular matrix (also called right triangular matrix).
public abstract class QR<T> : ISolver<T> where T : struct, new(), IEquatable<T>, IFormattable
The QRT type exposes the following members.
Name | Description | |
---|---|---|
Determinant | Gets the absolute determinant value of the matrix for which the QR matrix was computed. | |
IsFullRank | Gets a value indicating whether the matrix is full rank or not. | |
Q | Gets or sets orthogonal Q matrix | |
R | Gets the upper triangular factor R. |
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 QR factorized. | |
Solve(VectorT) | Solves a system of linear equations, Ax = b, with A QR factorized. | |
Solve(MatrixT, MatrixT) | Solves a system of linear equations, AX = B, with A QR factorized. | |
Solve(VectorT, VectorT) | Solves a system of linear equations, Ax = b, with A QR factorized. | |
ToString | Returns a string that represents the current object. (Inherited from Object) |