Click or drag to resize

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.LinearAlgebra
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public Matrix QRorLQSolve(
	Matrix A,
	Matrix B
)
Request Example View Source

Parameters

A  Matrix
The A matrix.
B  Matrix
The matrix containing the right-hand side of the linear system.

Return Value

Matrix
A matrix containing the solution.
See Also