CPPLapack
 All Classes Files Functions Variables Friends Pages
_zgematrix-unary.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! +_zgematrix operator */
3 inline const _zgematrix& operator+(const _zgematrix& mat)
4 {CPPL_VERBOSE_REPORT;
5  return mat;
6 }
7 
8 //=============================================================================
9 /*! -_zgematrix operator */
10 inline _zgematrix operator-(const _zgematrix& mat)
11 {CPPL_VERBOSE_REPORT;
12  for(CPPL_INT i=0; i<mat.m*mat.n; i++){ mat.array[i]=-mat.array[i]; }
13  return mat;
14 }
CPPL_INT m
matrix row size
Definition: _zgematrix.hpp:9
const _zgematrix & operator+(const _zgematrix &mat)
_zgematrix operator-(const _zgematrix &mat)
_dgematrix i(const _dgbmatrix &mat)
(DO NOT USE) Smart-temporary Complex Double-precision General Dence Matrix Class
Definition: _zgematrix.hpp:3
comple * array
1D array to store matrix data
Definition: _zgematrix.hpp:11
CPPL_INT n
matrix column size
Definition: _zgematrix.hpp:10