File: dcmatrxc.h

package info (click to toggle)
arpack%2B%2B 2.3-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 4,556 kB
  • sloc: cpp: 16,612; sh: 8,819; ansic: 2,312; makefile: 258
file content (50 lines) | stat: -rw-r--r-- 1,012 bytes parent folder | download | duplicates (8)
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
41
42
43
44
45
46
47
48
49
50
/*
   ARPACK++ v1.2 2/20/2000
   c++ interface to ARPACK code.

   MODULE DCMatrxC.h
   Function template for the mass matrix formed by using piecewise 
   linear elements on [0, 1].

   ARPACK Authors
      Richard Lehoucq
      Danny Sorensen
      Chao Yang
      Dept. of Computational & Applied Mathematics
      Rice University
      Houston, Texas
*/

#ifndef DCMATRXC_H
#define DCMATRXC_H

#include "arcomp.h"

template<class ARFLOAT, class ARINT>
void CompMatrixC(ARINT n, arcomplex<ARFLOAT>* &A)
{

  ARINT              i, j;
  arcomplex<ARFLOAT> diag, sub;

  // Defining constants.

  sub  = arcomplex<ARFLOAT>(1.0/(ARFLOAT)(n+1), 0.0);
  diag = arcomplex<ARFLOAT>(4.0/(ARFLOAT)(n+1), 0.0);

  // Creating output vector A.

  A  = new arcomplex<ARFLOAT>[n*n];

  for (i=0; i<n*n; i++) A[i] = arcomplex<ARFLOAT>(0.0, 0.0);

  for (i=0, j=0; i<n; i++, j+=n+1) {
    if (i)      A[j-1]  = sub;
                A[j]    = diag;
    if (n-i-1)  A[j+1]  = sub;
  }

} // CompMatrixC.

#endif // DCMATRXC_H