source: git/kernel/linear_algebra/eigenval.h @ 5402db6

fieker-DuValspielwiese
Last change on this file since 5402db6 was 23a78e, checked in by Adi Popescu <adi_popescum@…>, 10 years ago
Separating Headers: kernel/linear_algebra
  • Property mode set to 100644
File size: 463 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/*
5* ABSTRACT: eigenvalues of constant square matrices
6*/
7
8#ifndef EIGENVAL_H
9#define EIGENVAL_H
10#ifdef HAVE_EIGENVAL
11
12matrix evSwap(matrix M,int i,int j);
13matrix evRowElim(matrix M,int i,int j,int k);
14matrix evColElim(matrix M,int i,int j,int k);
15matrix evHessenberg(matrix M);
16
17#endif /* ifdef HAVE_EIGENVAL */
18#endif /* EIGENVAL_H */
Note: See TracBrowser for help on using the repository browser.