source: git/Singular/eigenval_ip.h @ 198c60

fieker-DuValspielwiese
Last change on this file since 198c60 was 599326, checked in by Kai Krüger <krueger@…>, 14 years ago
Anne, Kai, Frank: - changes to #include "..." statements to allow cleaner build structure - affected directories: omalloc, kernel, Singular - not yet done: IntergerProgramming git-svn-id: file:///usr/local/Singular/svn/trunk@13032 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 575 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 <Singular/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.