LinearLeastSquaresQRorLQSolve Method | 
            Solves overdetermined or underdetermined real linear systems
            involving an M-by-N matrix A, using a QR or LQ
            factorization of A.  It is assumed that A has full rank.
            
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic Matrix QRorLQSolve(
	Matrix A,
	Matrix B
)
Public Function QRorLQSolve ( 
	A As Matrix,
	B As Matrix
) As Matrix
 Request Example
		View SourceParameters
- A  Matrix
 - The A matrix.
 - B  Matrix
 - The matrix containing the right-hand side of the linear system.
 
Return Value
MatrixA matrix containing the solution.
See Also