-
Notifications
You must be signed in to change notification settings - Fork 439
L_18s
Joris Gillis edited this page Apr 4, 2023
·
2 revisions
QR factorization using the modified Gram-Schmidt algorithm.::
qr(DM A) -> (DM OUTPUT1, DM OUTPUT2) qr(SX A) -> (SX OUTPUT1, SX OUTPUT2)More stable than the classical Gram-Schmidt, but may break down if the rows of A are nearly linearly dependent See J. Demmel: Applied Numerical Linear Algebra (algorithm 3.1.). Note that in SWIG, Q and R are returned by value.
To edit, see writing tips.