VERB_code_2.3
_zgematrix-unary.hpp
1 //=============================================================================
3 inline const _zgematrix& operator+(const _zgematrix& mat)
4 {
5 #ifdef CPPL_VERBOSE
6  std::cerr << "# [MARK] operator+(const _zgematrix&)"
7  << std::endl;
8 #endif//CPPL_VERBOSE
9 
10  return mat;
11 }
12 
13 //=============================================================================
15 inline _zgematrix operator-(const _zgematrix& mat)
16 {
17 #ifdef CPPL_VERBOSE
18  std::cerr << "# [MARK] operator-(const _zgematrix&)"
19  << std::endl;
20 #endif//CPPL_VERBOSE
21 
22  for(long i=0; i<mat.M*mat.N; i++){ mat.Array[i]=-mat.Array[i]; }
23  return mat;
24 }
long N
matrix column size
Definition: _zgematrix.hpp:8
std::complex< double > * Array
1D Array to store matrix data
Definition: _zgematrix.hpp:9
friend _zrovector operator-(const _zrovector &)
Definition: _zrovector-unary.hpp:15
(DO NOT USE) Smart-temporary Complex Double-precision General Dence Matrix Class
Definition: _zgematrix.hpp:3
long M
matrix row size
Definition: _zgematrix.hpp:7
friend const _zrovector & operator+(const _zrovector &)
Definition: _zrovector-unary.hpp:3