Program listing for file kernel/src/utils/SiconosAlgebra/EigenProblems.hpp#

 1#ifndef EIGENPROBLEMS_HPP
 2#define EIGENPROBLEMS_HPP
 3
 4
 5#include "SiconosMatrix.hpp"
 6
 7namespace Siconos {
 8  namespace eigenproblems {
 9
10
11    int syev(SiconosVector& eigenval, SiconosMatrix& eigenvec, bool withVect = true);
12
13
14    int geev(SiconosMatrix& input_mat, complex_vector& eigenval,
15             complex_matrix& left_eigenvec, complex_matrix& right_eigenvec,
16             bool withLeft = false, bool withRight = true);
17
18  }
19}
20
21
22#endif