Mercurial > hg > octave-nkf
view liboctave/CmplxQR.cc @ 7923:c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 11 Jul 2008 15:43:10 -0400 |
parents | 7c9ba697a479 |
children | 4976f66d469b |
line wrap: on
line source
/* Copyright (C) 1994, 1995, 1996, 1997, 2002, 2003, 2004, 2005, 2007 John W. Eaton This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, see <http://www.gnu.org/licenses/>. */ // updating/downdating by Jaroslav Hajek 2008 #ifdef HAVE_CONFIG_H #include <config.h> #endif #include "CmplxQR.h" #include "f77-fcn.h" #include "lo-error.h" #include "Range.h" #include "idx-vector.h" extern "C" { F77_RET_T F77_FUNC (zgeqrf, ZGEQRF) (const octave_idx_type&, const octave_idx_type&, Complex*, const octave_idx_type&, Complex*, Complex*, const octave_idx_type&, octave_idx_type&); F77_RET_T F77_FUNC (zungqr, ZUNGQR) (const octave_idx_type&, const octave_idx_type&, const octave_idx_type&, Complex*, const octave_idx_type&, Complex*, Complex*, const octave_idx_type&, octave_idx_type&); // these come from qrupdate F77_RET_T F77_FUNC (zqr1up, ZQR1UP) (const octave_idx_type&, const octave_idx_type&, const octave_idx_type&, Complex*, Complex*, const Complex*, const Complex*); F77_RET_T F77_FUNC (zqrinc, ZQRINC) (const octave_idx_type&, const octave_idx_type&, const octave_idx_type&, Complex*, const Complex*, Complex*, const octave_idx_type&, const Complex*); F77_RET_T F77_FUNC (zqrdec, ZQRDEC) (const octave_idx_type&, const octave_idx_type&, const octave_idx_type&, Complex*, const Complex*, Complex*, const octave_idx_type&); F77_RET_T F77_FUNC (zqrinr, ZQRINR) (const octave_idx_type&, const octave_idx_type&, const Complex*, Complex*, const Complex*, Complex*, const octave_idx_type&, const Complex*); F77_RET_T F77_FUNC (zqrder, ZQRDER) (const octave_idx_type&, const octave_idx_type&, const Complex*, Complex*, const Complex*, Complex *, const octave_idx_type&); F77_RET_T F77_FUNC (zqrshc, ZQRSHC) (const octave_idx_type&, const octave_idx_type&, const octave_idx_type&, Complex*, Complex*, const octave_idx_type&, const octave_idx_type&); } ComplexQR::ComplexQR (const ComplexMatrix& a, QR::type qr_type) : q (), r () { init (a, qr_type); } void ComplexQR::init (const ComplexMatrix& a, QR::type qr_type) { octave_idx_type m = a.rows (); octave_idx_type n = a.cols (); if (m == 0 || n == 0) { (*current_liboctave_error_handler) ("ComplexQR must have non-empty matrix"); return; } octave_idx_type min_mn = m < n ? m : n; Array<Complex> tau (min_mn); Complex *ptau = tau.fortran_vec (); octave_idx_type lwork = 32*n; Array<Complex> work (lwork); Complex *pwork = work.fortran_vec (); octave_idx_type info = 0; ComplexMatrix A_fact; if (m > n && qr_type != QR::economy) { A_fact.resize (m, m); A_fact.insert (a, 0, 0); } else A_fact = a; Complex *tmp_data = A_fact.fortran_vec (); F77_XFCN (zgeqrf, ZGEQRF, (m, n, tmp_data, m, ptau, pwork, lwork, info)); if (qr_type == QR::raw) { for (octave_idx_type j = 0; j < min_mn; j++) { octave_idx_type limit = j < min_mn - 1 ? j : min_mn - 1; for (octave_idx_type i = limit + 1; i < m; i++) A_fact.elem (i, j) *= tau.elem (j); } r = A_fact; if (m > n) r.resize (m, n); } else { octave_idx_type n2 = (qr_type == QR::economy) ? min_mn : m; if (qr_type == QR::economy && m > n) r.resize (n, n, 0.0); else r.resize (m, n, 0.0); for (octave_idx_type j = 0; j < n; j++) { octave_idx_type limit = j < min_mn-1 ? j : min_mn-1; for (octave_idx_type i = 0; i <= limit; i++) r.elem (i, j) = A_fact.elem (i, j); } lwork = 32 * n2; work.resize (lwork); Complex *pwork2 = work.fortran_vec (); F77_XFCN (zungqr, ZUNGQR, (m, n2, min_mn, tmp_data, m, ptau, pwork2, lwork, info)); q = A_fact; q.resize (m, n2); } } ComplexQR::ComplexQR (const ComplexMatrix &q, const ComplexMatrix& r) { if (q.columns () != r.rows ()) { (*current_liboctave_error_handler) ("QR dimensions mismatch"); return; } this->q = q; this->r = r; } void ComplexQR::update (const ComplexMatrix& u, const ComplexMatrix& v) { octave_idx_type m = q.rows (); octave_idx_type n = r.columns (); octave_idx_type k = q.columns (); if (u.length () == m && v.length () == n) F77_XFCN (zqr1up, ZQR1UP, (m, n, k, q.fortran_vec (), r.fortran_vec (), u.data (), v.data ())); else (*current_liboctave_error_handler) ("QR update dimensions mismatch"); } void ComplexQR::insert_col (const ComplexMatrix& u, octave_idx_type j) { octave_idx_type m = q.rows (); octave_idx_type n = r.columns (); octave_idx_type k = q.columns (); if (u.length () != m) (*current_liboctave_error_handler) ("QR insert dimensions mismatch"); else if (j < 0 || j > n) (*current_liboctave_error_handler) ("QR insert index out of range"); else { ComplexMatrix r1 (m,n+1); F77_XFCN (zqrinc, ZQRINC, (m, n, k, q.fortran_vec (), r.data (), r1.fortran_vec (), j+1, u.data ())); r = r1; } } void ComplexQR::delete_col (octave_idx_type j) { octave_idx_type m = q.rows (); octave_idx_type k = r.rows (); octave_idx_type n = r.columns (); if (k < m && k < n) (*current_liboctave_error_handler) ("QR delete dimensions mismatch"); else if (j < 0 || j > n-1) (*current_liboctave_error_handler) ("QR delete index out of range"); else { ComplexMatrix r1 (k, n-1); F77_XFCN (zqrdec, ZQRDEC, (m, n, k, q.fortran_vec (), r.data (), r1.fortran_vec (), j+1)); r = r1; } } void ComplexQR::insert_row (const ComplexMatrix& u, octave_idx_type j) { octave_idx_type m = r.rows (); octave_idx_type n = r.columns (); if (! q.is_square () || u.length () != n) (*current_liboctave_error_handler) ("QR insert dimensions mismatch"); else if (j < 0 || j > m) (*current_liboctave_error_handler) ("QR insert index out of range"); else { ComplexMatrix q1 (m+1, m+1); ComplexMatrix r1 (m+1, n); F77_XFCN (zqrinr, ZQRINR, (m, n, q.data (), q1.fortran_vec (), r.data (), r1.fortran_vec (), j+1, u.data ())); q = q1; r = r1; } } void ComplexQR::delete_row (octave_idx_type j) { octave_idx_type m = r.rows (); octave_idx_type n = r.columns (); if (! q.is_square ()) (*current_liboctave_error_handler) ("QR delete dimensions mismatch"); else if (j < 0 || j > m-1) (*current_liboctave_error_handler) ("QR delete index out of range"); else { ComplexMatrix q1 (m-1, m-1); ComplexMatrix r1 (m-1, n); F77_XFCN (zqrder, ZQRDER, (m, n, q.data (), q1.fortran_vec (), r.data (), r1.fortran_vec (), j+1 )); q = q1; r = r1; } } void ComplexQR::shift_cols (octave_idx_type i, octave_idx_type j) { octave_idx_type m = q.rows (); octave_idx_type k = r.rows (); octave_idx_type n = r.columns (); if (i < 0 || i > n-1 || j < 0 || j > n-1) (*current_liboctave_error_handler) ("QR shift index out of range"); else F77_XFCN (zqrshc, ZQRSHC, (m, n, k, q.fortran_vec (), r.fortran_vec (), i+1, j+1)); } void ComplexQR::economize (void) { octave_idx_type r_nc = r.columns (); if (r.rows () > r_nc) { q.resize (q.rows (), r_nc); r.resize (r_nc, r_nc); } } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */