source: git/Singular/eigenval.h @ a7f2a04

spielwiese
Last change on this file since a7f2a04 was a7f2a04, checked in by Mathias Schulze <mschulze@…>, 22 years ago
*mschulze: new procedures for eigenvalues git-svn-id: file:///usr/local/Singular/svn/trunk@5877 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 695 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: eigenval.h,v 1.2 2002-02-16 10:56:19 mschulze Exp $ */
5/*
6* ABSTRACT: eigenvalues of constant square matrices
7*/
8
9#ifndef EIGENVAL_H
10#define EIGENVAL_H
11
12matrix evSwap(matrix M,int i,int j);
13BOOLEAN evSwap(leftv res,leftv h);
14matrix evRowElim(matrix M,int i,int j,int k);
15BOOLEAN evRowElim(leftv res,leftv h);
16matrix evColElim(matrix M,int i,int j,int k);
17BOOLEAN evColElim(leftv res,leftv h);
18matrix evHessenberg(matrix M);
19BOOLEAN evHessenberg(leftv res,leftv h);
20lists evEigenvalue(matrix M);
21BOOLEAN evEigenvalue(leftv res,leftv h);
22
23#endif /* EIGENVAL_H */
Note: See TracBrowser for help on using the repository browser.