tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
eigs_sym.cc
1 // -*- mode: c++; fill-column: 80; c-basic-offset: 2; indent-tabs-mode: nil -*-
2 /*
3  Copyright (c) 2010 Juan Jose Garcia Ripoll
4 
5  Tensor is free software; you can redistribute it and/or modify it
6  under the terms of the GNU Library General Public License as published
7  by the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Library General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License along
16  with this program; if not, write to the Free Software Foundation, Inc.,
17  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 //----------------------------------------------------------------------
21 // ARPACK DRIVER FOR SYMMETRIC REAL EIGENVALUE PROBLEMS
22 //
23 
24 #include <linalg.h>
25 #include <arpack.h>
26 #include <utils.h>
27 #include <sys/blas.h>
28 
29 RTensor
30 eigs_sym(const RTensor &A, RArpack::EigType t, size_t neig, RTensor *eigenvectors,
31  const RTensor::elt_t *initial_guess)
32 {
33  size_t n = A.columns();
34 
35  if ((A.rank() != 2) || (A.rows() != n)) {
36  std::cerr << "In eigs(): Can only compute eigenvalues of square matrices.";
37  myabort();
38  }
39 
40  if (neig > n || neig == 0) {
41  std::cerr << "In eigs(): Can only compute up to " << n << " eigenvalues\n"
42  << "in a matrix that has " << n << " times " << n << " elements.";
43  myabort();
44  }
45 
46  if (n <= 4) {
47  /* For small sizes, the ARPACK solver produces wrong results!
48  * In any case, for these sizes it is more efficient to do the solving
49  * using the full routine.
50  */
51  RTensor values = eig_sym(A, eigenvectors);
52  UIVector ndx = RArpack::sort_values(values, t)(Range(0, neig-1));
53  if (eigenvectors) {
54  *eigenvectors = (*eigenvectors)(Range(), Range(ndx));
55  }
56  return re_part(values(Range(ndx)));
57  }
58 
59  RArpack data(n, t, neig);
60 
61  if (initial_guess)
62  data.set_start_vector(initial_guess);
63 
64  while (data.update() < RArpack::Finished) {
65  gemv('N', n, n, RTensor::elt_one(), A.pointer(), n, data.get_x_vector(), 1,
66  RTensor::elt_zero(), data.get_y_vector(), 1);
67  }
68  if (data.get_status() == RArpack::Finished) {
69  return data.get_data(eigenvectors);
70  } else {
71  std::cerr << data.error_message() << '\n';
72  myabort();
73  }
74  return RTensor();
75 }
76 
RTensor eig_sym(const RTensor &A, RTensor *pR=0)
Eigenvalue decomposition of a real matrix.
Definition: eig_sym_d.cc:44
RTensor eigs_sym(const RTensor &A, int eig_type, size_t neig, RTensor *vectors=NULL, const double *initial_guess=NULL)
Find out a few eigenvalues and eigenvectors of a symmetric real matrix.