ManagedLinearAlgebraProviderQRSolveFactored(Double, Double, Int32, Int32, Double, Double, Int32, Double, QRMethod) Method |
Solves A*X=B for X using a previously QR factored matrix.
Namespace: Altaxo.Calc.Providers.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void QRSolveFactored(
double[] q,
double[] r,
int rowsA,
int columnsA,
double[] tau,
double[] b,
int columnsB,
double[] x,
QRMethod method = QRMethod.Full
)
Parameters
- q Double
- The Q matrix obtained by calling QRFactor(Double, Int32, Int32, Double, Double).
- r Double
- The R matrix obtained by calling QRFactor(Double, Int32, Int32, Double, Double).
- rowsA Int32
- The number of rows in the A matrix.
- columnsA Int32
- The number of columns in the A matrix.
- tau Double
- Contains additional information on Q. Only used for the native solver
and can be null for the managed provider.
- b Double
- The B matrix.
- columnsB Int32
- The number of columns of B.
- x Double
- On exit, the solution matrix.
- method QRMethod (Optional)
- The type of QR factorization to perform.
Implements
ILinearAlgebraProviderTQRSolveFactored(T, T, Int32, Int32, T, T, Int32, T, QRMethod)Remarks Rows must be greater or equal to columns.
See Also