Numerical Components for .NET
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 4.2.11333.0 (4.2.12253.0)
public class QRDecomposition : Decomposition, ILeastSquaresSolver
Public Class QRDecomposition _ Inherits Decomposition _ Implements ILeastSquaresSolver
public ref class QRDecomposition : public Decomposition, ILeastSquaresSolver
type QRDecomposition = class inherit Decomposition interface ILeastSquaresSolver end
The QR decomposition of a matrix A rewrites the matrix in the form A= QR, where Q is an orthogonal matrix, and R is an upper-triangular matrix.
QRDecomposition can operate in two modes. In overwrite mode, the original matrix is overwritten by the decomposition. In preserve mode, the original matrix is preserved, and a new matrix is created to hold the decomposition. You can set the mode through the Overwrite property.
QRDecomposition inherits from LinearOperator. This means you can use it to solve systems of linear equations. You can solve for a single right-hand side, or for multiple right-hand sides using the Solve(DenseVector, Boolean) method. You can also calculate the determinant, the inverse, and an estimate for the EstimateConditionNumber()()()().
Copyright © 2003-2013, Extreme Optimization. All rights reserved. Extreme Optimization, Complexity made simple, M#, and M Sharp are trademarks of ExoAnalytics Inc. Microsoft, Visual C#, Visual Basic, Visual Studio, Visual Studio.NET, and the Optimized for Visual Studio logo are registered trademarks of Microsoft Corporation.