diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-09-29 16:12:44 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-09-29 16:12:44 +0000 |
commit | c54d047956412dafc8e2a11f5c5f11733d330d68 (patch) | |
tree | ef2c7a2162a30140d7784edd71a219f6b1b4b18f /lib/LAPACK/lapack-aux.h | |
parent | 59e449d624d5313660848dd0e58fe95dc482f9ca (diff) |
lapack QR (unpacked)
Diffstat (limited to 'lib/LAPACK/lapack-aux.h')
-rw-r--r-- | lib/LAPACK/lapack-aux.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/LAPACK/lapack-aux.h b/lib/LAPACK/lapack-aux.h index c5bf3cc..ea71847 100644 --- a/lib/LAPACK/lapack-aux.h +++ b/lib/LAPACK/lapack-aux.h | |||
@@ -40,3 +40,7 @@ int linearSolveSVDC_l(double,KCMAT(a),KCMAT(b),CMAT(x)); | |||
40 | int chol_l_H(KCMAT(a),CMAT(r)); | 40 | int chol_l_H(KCMAT(a),CMAT(r)); |
41 | 41 | ||
42 | int chol_l_S(KDMAT(a),DMAT(r)); | 42 | int chol_l_S(KDMAT(a),DMAT(r)); |
43 | |||
44 | int qr_l_R(KDMAT(a), DVEC(tau), DMAT(r)); | ||
45 | |||
46 | int qr_l_C(KCMAT(a), CVEC(tau), CMAT(r)); | ||