source: git/Singular/eigenval_ip.h @ 8d1432e

spielwiese
Last change on this file since 8d1432e was 23a78e, checked in by Adi Popescu <adi_popescum@…>, 10 years ago
Separating Headers: kernel/linear_algebra
  • Property mode set to 100644
File size: 577 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/*
5* ABSTRACT: eigenvalues of constant square matrices
6*/
7
8#ifndef EIGENVAL_IP_H
9#define EIGENVAL_IP_H
10#ifdef HAVE_EIGENVAL
11#include <kernel/linear_algebra/eigenval.h>
12
13BOOLEAN evSwap(leftv res,leftv h);
14BOOLEAN evRowElim(leftv res,leftv h);
15BOOLEAN evColElim(leftv res,leftv h);
16BOOLEAN evHessenberg(leftv res,leftv h);
17lists evEigenvals(matrix M);
18BOOLEAN evEigenvals(leftv res,leftv h);
19
20#endif /* ifdef HAVE_EIGENVAL */
21#endif /* EIGENVAL_IP_H */
Note: See TracBrowser for help on using the repository browser.