Changeset a7f2a04 in git for Singular/eigenval.h


Ignore:
Timestamp:
Feb 16, 2002, 11:56:19 AM (22 years ago)
Author:
Mathias Schulze <mschulze@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
03495f1856f489d63ec19f337bd5240315ef5371
Parents:
502ea23f40b3a43fb8b3bcbc306d20b0c02ab50b
Message:
*mschulze: new procedures for eigenvalues


git-svn-id: file:///usr/local/Singular/svn/trunk@5877 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/eigenval.h

    r502ea2 ra7f2a04  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: eigenval.h,v 1.1 2001-03-05 17:31:40 mschulze Exp $ */
     4/* $Id: eigenval.h,v 1.2 2002-02-16 10:56:19 mschulze Exp $ */
    55/*
    66* ABSTRACT: eigenvalues of constant square matrices
     
    1010#define EIGENVAL_H
    1111
    12 matrix tridiag(matrix M);
    13 lists eigenval(matrix M);
    14 BOOLEAN tridiag(leftv res,leftv h);
    15 BOOLEAN eigenval(leftv res,leftv h);
     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);
    1622
    17 #endif
     23#endif /* EIGENVAL_H */
Note: See TracChangeset for help on using the changeset viewer.