Click or drag to resize

LQ Class

Implements a LQ factorization of general rectangular real matrix with or without row pivoting.
Inheritance Hierarchy
SystemObject
  FinMath.LinearAlgebra.FactorizationsLQ

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

The LQ type exposes the following members.

Constructors
  NameDescription
Public methodLQ(Boolean)
Initializes a new instance of the LQ factorization with given settings.
Public methodLQ(Matrix)
Initializes a new instance of the LQ factorization of the given matrix.
Public methodLQ(Matrix, Boolean)
Initializes a new instance of the LQ factorization of the given matrix with optional row pivoting.
Top
Methods
  NameDescription
Public methodEconomicL
Computes the economy-size lower triangular matrix L.
Public methodEconomicQ
Computes the economy-size matrix Q with orthogonal rows.
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 methodInverseRowPermutation
Computes the inverse of permutation of rows applied to matrix A.
Public methodIsFullRank
Checks whether the matrix has rull rank.
Public methodL
Computes the lower triangular (or lower trapezoidal) matrix L.
Public methodP
Computes the permutation matrix.
Public methodQ
Computes the unitary matrix Q.
Public methodRowPermutation
Computes the permutation of rows applied to matrix A.
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 LQ factorization of the given matrix.
Top
See Also