"Fossies" - the Fresh Open Source Software Archive

Member "laspack/eigenval.h" (27 Mar 1995, 1538 Bytes) of package /linux/privat/old/laspack.tgz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /****************************************************************************/
    2 /*                                eigenval.h                                */
    3 /****************************************************************************/
    4 /*                                                                          */
    5 /* estimation of extremal EIGENVALues                                       */
    6 /*                                                                          */
    7 /* Copyright (C) 1992-1995 Tomas Skalicky. All rights reserved.             */
    8 /*                                                                          */
    9 /****************************************************************************/
   10 /*                                                                          */
   11 /*        ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS          */
   12 /*              OF THE COPYRIGHT NOTICE (SEE FILE COPYRGHT.H)               */
   13 /*                                                                          */
   14 /****************************************************************************/
   15 
   16 #ifndef EIGENVAL_H
   17 #define EIGENVAL_H
   18 
   19 #include "laspack/vector.h"
   20 #include "laspack/qmatrix.h"
   21 #include "laspack/precond.h"
   22 #include "laspack/copyrght.h"
   23 
   24 /* estimation of extremal eigenvalues */
   25 
   26 void SetEigenvalAccuracy(double Eps);
   27 double GetMinEigenval(QMatrix *Q, PrecondProcType PrecondProc, double OmegaPrecond);
   28 double GetMaxEigenval(QMatrix *Q, PrecondProcType PrecondProc, double OmegaPrecond);
   29 
   30 #endif /* EIGENVAL_H */