File: README

package info (click to toggle)
arpack%2B%2B 2.1-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,216 kB
  • ctags: 2,349
  • sloc: cpp: 19,093; ansic: 2,201; makefile: 508
file content (40 lines) | stat: -rw-r--r-- 1,433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
This is the arpack++/examples/umfpack/complex directory.

1) Examples included in this directory:

   This directory contains examples intended to show how to use
   ARPACK++ to solve complex eigenvalue problems in various
   computational modes in conjunction with the UMFPACK library.

   file              Description
   -----------       --------------------------------------------------

   ucompreg.cc       In this example a standard eigenvalue problem
                     is solved using the regular mode.

   ucompshf.cc       In this example a standard eigenvalue problem
                     is solved using the shift and invert mode.

   ucompgre.cc       In this example a generalized eigenvalue problem
                     is solved using the regular mode.

   ucompgsh.cc       In this example a generalized eigenvalue problem
                     is solved using the real shift and invert mode.


2) Compiling the examples:

   To compile and link all the above mentioned programs you just have
   to type "make all". Each example can also be compiled separately by
   using a specific command, such as "make ucompgsh".

   Because the examples that use invert modes require the solution of
   some linear systems, the UMFPACK library must be installed prior to
   compiling ucompshf, ucompgre and ucompgsh.


3) Running the examples:

   A program is executed by just typing its name (ucompgsh, for
   example).