UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
coeff.hpp
1 //coeff.hpp
2 // $Id: coeff.hpp,v 1.1 2005/12/23 13:31:39 vlad Exp $
3 //---------------------------------------------------------------------
4 #ifndef coeffH
5 #define coeffH
6 //=====================================================================
7 #include <complex>
8 #include <iostream>
9 #include <fstream>
10 #include <iomanip>
11 using namespace std;
12 #define dcomplex complex<double>
13 
14 dcomplex coeff(double p1,int ind1,int ind2,int pr,double ro1,double vp1,
15  double vs1,double ro2,double vp2,double vs2);
16 dcomplex cdet4(dcomplex (*L4)[4]);
17 //=====================================================================
18 #endif