@saehrimnir/druidjs / qr_householder
Function: qr_householder()
ts
function qr_householder(A: Matrix): {
Q: Matrix;
R: Matrix;
};Defined in: linear_algebra/qr_householder.js:12
Computes the QR Decomposition of the Matrix A with householder transformations.
Parameters
| Parameter | Type | Description |
|---|---|---|
A | Matrix | - |
Returns
ts
{
Q: Matrix;
R: Matrix;
}| Name | Type | Defined in |
|---|---|---|
Q | Matrix | linear_algebra/qr_householder.js:8 |
R | Matrix | linear_algebra/qr_householder.js:8 |