source: git/kernel/eigenval.h @ 4bbe3b

fieker-DuValspielwiese
Last change on this file since 4bbe3b was 35aab3, checked in by Hans Schönemann <hannes@…>, 21 years ago
This commit was generated by cvs2svn to compensate for changes in r6879, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@6880 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 751 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: eigenval.h,v 1.1.1.1 2003-10-06 12:15:51 Singular Exp $ */
5/*
6* ABSTRACT: eigenvalues of constant square matrices
7*/
8
9#ifndef EIGENVAL_H
10#define EIGENVAL_H
11#ifdef HAVE_EIGENVAL
12
13matrix evSwap(matrix M,int i,int j);
14BOOLEAN evSwap(leftv res,leftv h);
15matrix evRowElim(matrix M,int i,int j,int k);
16BOOLEAN evRowElim(leftv res,leftv h);
17matrix evColElim(matrix M,int i,int j,int k);
18BOOLEAN evColElim(leftv res,leftv h);
19matrix evHessenberg(matrix M);
20BOOLEAN evHessenberg(leftv res,leftv h);
21lists evEigenvals(matrix M);
22BOOLEAN evEigenvals(leftv res,leftv h);
23
24#endif /* ifdef HAVE_EIGENVAL */
25#endif /* EIGENVAL_H */
Note: See TracBrowser for help on using the repository browser.