Spectral Integral Suite in C++
Ex_04.cpp File Reference

This solves the problem for a block matrix operator system. More...

Detailed Description

This solves the problem for a block matrix operator system.

The eigenvalue problem is given by:

\[ \left[ \begin{array}{cc} \frac{1}{4} \mathrm D^2 + 2y & 1.0 \\ \sin (2y) & \frac{1}{4}\mathrm D^2 \end{array} \right] \left[ \begin{array}{c} u \\ v \end{array} \right] \;=\; \lambda \left[ \begin{array}{c} u \\ v \end{array} \right], \]

with boundary conditions:

\[ u(\pm 1) \;=\; v(\pm 1) \;=\; 0. \]

where \( \mathrm D = \mathrm d/\mathrm d y \).

Definition in file Ex_04.cpp.

Include dependency graph for Ex_04.cpp:

Go to the source code of this file.

Typedefs

typedef complex< double > Cd_t
 
typedef valarray< double > Vd_t
 

Functions

int main ()
 

Typedef Documentation

◆ Cd_t

typedef complex<double> Cd_t

Definition at line 36 of file Ex_04.cpp.

◆ Vd_t

typedef valarray<double> Vd_t

Definition at line 37 of file Ex_04.cpp.

Function Documentation

◆ main()