Public Instance Constructors
QRDecomposition Constructor | QR Decomposition, computed by Householder reflections. |
Public Instance Properties
FullRank | Is the matrix full rank? |
H | Return the Householder vectors |
Q | Generate and return the (economy-sized) orthogonal factor |
R | Return the upper triangular factor |
Public Instance Methods
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. |
Solve | Least squares solution of A*X = B |
ToString (inherited from Object) | Returns a String that represents the current Object. |
Private Instance Fields
m | Row and column dimensions. @serial column dimension. @serial row dimension. |
n | Row and column dimensions. @serial column dimension. @serial row dimension. |
QR | Array for internal storage of decomposition. @serial internal array storage. |
Rdiag | Array for internal storage of diagonal of R. @serial diagonal of R. |