CPPLapack
 All Classes Files Functions Variables Friends
_zcovector-unary.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! +_zcovector operator */
00003 inline const _zcovector& operator+(const _zcovector& vec)
00004 {VERBOSE_REPORT;
00005   return vec;
00006 }
00007 
00008 //=============================================================================
00009 /*! -_zcovector operator */
00010 inline _zcovector operator-(const _zcovector& vec)
00011 {VERBOSE_REPORT;
00012   for(long i=0; i<vec.l; i++){ vec.array[i]=-vec.array[i]; }
00013   return vec;
00014 }
 All Classes Files Functions Variables Friends