00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef _Matrix_Global_h_
00027 #define _Matrix_Global_h_
00028
00029 #undef PACKAGE
00030 #undef VERSION
00031
00032 #include "plib.h"
00033
00034 #undef PACKAGE
00035 #undef VERSION
00036
00037 #include <cmath>
00038 #include <iostream>
00039 #include <complex>
00040 #include <sstream>
00041 #include <iomanip>
00042 #include <fstream>
00043
00044 using std::cerr;
00045 using std::cout;
00046 using std::cin;
00047 using std::endl;
00048 using std::setw;
00049 using std::real;
00050 using std::imag;
00051 using std::complex;
00052 using std::ostream;
00053 using std::istream;
00054 using std::ofstream;
00055 using std::ifstream;
00056
00057 #ifdef USING_VCC
00058 namespace PLib {
00059 const double M_PI = 3.1415926535897932385;
00060 }
00061 #endif
00062
00063
00064
00065
00066
00067 typedef std::complex<double> Complex ;
00068
00069
00070 #ifndef HAS_COMPLEX_CONJ
00071 Complex conj(Complex &value){
00072 return Complex(value.real(),-value.imag());
00073 }
00074 #endif
00075
00076 #ifndef HAS_COMPLEX_ABS
00077 double abs(Complex &value){
00078 return sqrt(value.real()*value.real()+value.imag()*value.imag());
00079 }
00080 #endif
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091 #include "error.h"
00092
00093 #endif