Click or drag to resize

QR Class

Implements a QR factorization of general rectangular real matrix with or without column pivoting.
Inheritance Hierarchy
SystemObject
  FinMath.LinearAlgebra.FactorizationsQR

Namespace:  FinMath.LinearAlgebra.Factorizations
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class QR : ISolver

The QR type exposes the following members.

Constructors
  NameDescription
Public methodQR(Boolean)
Initializes a new instance of the QR factorization with optional column pivoting.
Public methodQR(Matrix)
Initializes a new instance of the QR factorization of the given matrix.
Public methodQR(Matrix, Boolean)
Initializes a new instance of the QR factorization of the given matrix with optional column pivoting.
Top
Methods
  NameDescription
Public methodColumnPermutation
Computes the permutation of columns applied to matrix A.
Public methodEconomicQ
Computes the economy-size matrix Q.
Public methodEconomicR
Computes the economy-size matrix R.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInverseColumnPermutation
Computes the inverse of permutation of columns applied to matrix A.
Public methodIsFullRank
Checks whether the matrix has rull rank.
Public methodP
Computes the permutation matrix.
Public methodQ
Computes the unitary matrix Q.
Public methodR
Computes the upper triangular matrix R.
Public methodSolve(Matrix)
Solves a system of linear equations, AX = B.
Public methodSolve(Vector)
Solves a system of linear equations, Ax = b
Public methodSolve(Matrix, Matrix)
Solves a system of linear equations, AX = B.
Public methodSolve(Vector, Vector)
Solves a system of linear equations, Ax = b.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUpdate
Computes the QR factorization of given matrix.
Top
See Also