| ManagedLinearAlgebraProviderQRSolve(Complex32, Int32, Int32, Complex32, Int32, Complex32, QRMethod) Method | 
            Solves A*X=B for X using QR factorization of A.
            
Namespace: Altaxo.Calc.Providers.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
 Syntax
Syntaxpublic void QRSolve(
	Complex32[] a,
	int rows,
	int columns,
	Complex32[] b,
	int columnsB,
	Complex32[] x,
	QRMethod method = QRMethod.Full
)
Parameters
- a  Complex32
- The A matrix.
- rows  Int32
- The number of rows in the A matrix.
- columns  Int32
- The number of columns in the A matrix.
- b  Complex32
- The B matrix.
- columnsB  Int32
- The number of columns of B.
- x  Complex32
- On exit, the solution matrix.
- method  QRMethod  (Optional)
- The type of QR factorization to perform. 
Implements
ILinearAlgebraProviderTQRSolve(T, Int32, Int32, T, Int32, T, QRMethod) Remarks
RemarksRows must be greater or equal to columns.
 See Also
See Also