Mercurial > hg > octave-lyh
diff liboctave/CmplxQR.cc @ 7554:40574114c514
implement Cholesky factorization updating
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Tue, 04 Mar 2008 22:25:50 -0500 |
parents | 56be6f31dd4e |
children | 07522d7dcdf8 |
line wrap: on
line diff
--- a/liboctave/CmplxQR.cc +++ b/liboctave/CmplxQR.cc @@ -275,10 +275,6 @@ void ComplexQR::economize (void) { - idx_vector c (':'), i (Range (1, r.columns ())); - q = ComplexMatrix (q.index (c, i)); - r = ComplexMatrix (r.index (i, c)); -#if 0 octave_idx_type r_nc = r.columns (); if (r.rows () > r_nc) @@ -286,7 +282,6 @@ q.resize (q.rows (), r_nc); r.resize (r_nc, r_nc); } -#endif } /*