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