tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
eigs_sp_d.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 NONSYMMETRIC SPARSE EIGENVALUE PROBLEMS
22 //
23 
24 #include <tensor/linalg.h>
25 #include <tensor/arpack_d.h>
26 
27 namespace linalg {
28 
29 RTensor
30 eigs(const RSparse &A, int eig_type, size_t neig, RTensor *eigenvectors,
31  const RTensor::elt_t *initial_guess)
32 {
33  EigType t = (EigType)eig_type;
34  size_t n = A.columns();
35 
36  if (n <= 10) {
37  return eigs(full(A), t, neig, eigenvectors, initial_guess);
38  }
39 
40  if (A.rows() != n) {
41  std::cerr << "In eigs(): Can only compute eigenvalues of square matrices.";
42  abort();
43  }
44 
45  RTensor output;
46  {
47  RArpack data(A.columns(), t, neig);
48 
49  if (initial_guess)
50  data.set_start_vector(initial_guess);
51 
52  while (data.update() < RArpack::Finished) {
53  data.set_y(mmult(A, data.get_x()));
54  }
55  if (data.get_status() != RArpack::Finished) {
56  std::cerr << data.error_message() << '\n';
57  abort();
58  }
59  output = data.get_data(eigenvectors);
60  }
61  return output;
62 }
63 
64 } // namespace linalg
CTensor eigs(const CTensor &A, int eig_type, size_t neig, CTensor *vectors=NULL, const tensor::cdouble *initial_guess=NULL)
Find out a few eigenvalues and eigenvectors of a complex nonsymmetric matrix.
EigType
Type of eigenvalues that eigs and Arpack compute.
Definition: linalg.h:69