source: git/Singular/eigenval_ip.h @ bee06d

spielwiese
Last change on this file since bee06d was 6dba49c, checked in by Hans Schoenemann <hannes@…>, 14 years ago
fix typo git-svn-id: file:///usr/local/Singular/svn/trunk@13053 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 573 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id$ */
5/*
6* ABSTRACT: eigenvalues of constant square matrices
7*/
8
9#ifndef EIGENVAL_IP_H
10#define EIGENVAL_IP_H
11#ifdef HAVE_EIGENVAL
12#include <kernel/eigenval.h>
13
14BOOLEAN evSwap(leftv res,leftv h);
15BOOLEAN evRowElim(leftv res,leftv h);
16BOOLEAN evColElim(leftv res,leftv h);
17BOOLEAN evHessenberg(leftv res,leftv h);
18lists evEigenvals(matrix M);
19BOOLEAN evEigenvals(leftv res,leftv h);
20
21#endif /* ifdef HAVE_EIGENVAL */
22#endif /* EIGENVAL_IP_H */
Note: See TracBrowser for help on using the repository browser.