CPPLapack
 All Classes Files Functions Variables Friends Pages
zgematrix-calc.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! return transposed zgematrix */
3 inline _zgematrix t(const zgematrix& mat)
4 {CPPL_VERBOSE_REPORT;
5  zgematrix newmat(mat.n,mat.m);
6 
7  for(CPPL_INT i=0; i<newmat.m; i++){
8  for(CPPL_INT j=0; j<newmat.n; j++){
9  newmat(i,j) =mat(j,i);
10  }
11  }
12 
13  return _(newmat);
14 }
15 
16 //=============================================================================
17 /*! return its inverse matrix */
18 inline _zgematrix i(const zgematrix& mat)
19 {CPPL_VERBOSE_REPORT;
20 #ifdef CPPL_DEBUG
21  if(mat.m!=mat.n){
22  ERROR_REPORT;
23  std::cerr << "This matrix is not square and has no inverse matrix." << std::endl
24  << "Your input was (" << mat.m << "x" << mat.n << ")." << std::endl;
25  exit(1);
26  }
27 #endif//CPPL_DEBUG
28 
29  zgematrix mat_cp(mat), mat_inv(mat.m,mat.n);
30  mat_inv.identity();
31  mat_cp.zgesv(mat_inv);
32 
33  return _(mat_inv);
34 }
35 
36 ///////////////////////////////////////////////////////////////////////////////
37 ///////////////////////////////////////////////////////////////////////////////
38 ///////////////////////////////////////////////////////////////////////////////
39 
40 //=============================================================================
41 /*! return its conjugate matrix */
42 inline _zgematrix conj(const zgematrix& mat)
43 {CPPL_VERBOSE_REPORT;
44  zgematrix newmat(mat.m,mat.n);
45 
46  for(CPPL_INT i=0; i<mat.m; i++){
47  for(CPPL_INT j=0; j<mat.n; j++){
48  newmat(i,j) =std::conj(mat(i,j));
49  }
50  }
51 
52  return _(newmat);
53 }
54 
55 //=============================================================================
56 /*! return its conjugate transposed matrix */
57 inline _zgematrix conjt(const zgematrix& mat)
58 {CPPL_VERBOSE_REPORT;
59  zgematrix newmat(mat.n,mat.m);
60 
61  for(CPPL_INT i=0; i<newmat.m; i++){
62  for(CPPL_INT j=0; j<newmat.n; j++){
63  newmat(i,j) =std::conj(mat(j,i));
64  }
65  }
66 
67  return _(newmat);
68 }
69 
70 ///////////////////////////////////////////////////////////////////////////////
71 ///////////////////////////////////////////////////////////////////////////////
72 ///////////////////////////////////////////////////////////////////////////////
73 
74 //=============================================================================
75 /*! search the index of element having the largest absolute value
76  in 0-based numbering system */
77 inline void idamax(CPPL_INT& i, CPPL_INT& j, const zgematrix& mat)
78 {CPPL_VERBOSE_REPORT;
79  CPPL_INT size =mat.m*mat.n;
80  CPPL_INT inc =1;
81  CPPL_INT index =izamax_(&size, mat.array, &inc) -1;
82  i =index%mat.m;
83  j =index/mat.m;
84 }
85 
86 //=============================================================================
87 /*! return its largest absolute value */
88 inline comple damax(const zgematrix& mat)
89 {CPPL_VERBOSE_REPORT;
90  CPPL_INT size =mat.m*mat.n;
91  CPPL_INT inc =1;
92  return mat.array[izamax_(&size, mat.array, &inc) -1];
93 }
comple damax(const zgematrix &mat)
zgematrix & identity()
void idamax(CPPL_INT &i, CPPL_INT &j, const zgematrix &mat)
CPPL_INT n
matrix column size
Definition: zgematrix.hpp:10
Complex Double-precision General Dence Matrix Class.
Definition: zgematrix.hpp:3
comple * array
1D array to store matrix data
Definition: zgematrix.hpp:11
(DO NOT USE) Smart-temporary Complex Double-precision General Dence Matrix Class
Definition: _zgematrix.hpp:3
_zgematrix i(const zgematrix &mat)
_zgematrix conjt(const zgematrix &mat)
_zgematrix conj(const zgematrix &mat)
CPPL_INT m
matrix row size
Definition: zgematrix.hpp:9
_dcovector _(dcovector &vec)
CPPL_INT zgesv(zgematrix &)
_zgematrix t(const zgematrix &mat)