CPPLapack
 All Classes Files Functions Variables Friends
_zrovector-complex.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! _zrovector*comple operator */
00003 inline _zrovector operator*(const _zrovector& vec, const comple& d)
00004 {VERBOSE_REPORT;
00005   zscal_(vec.l, d, vec.array, 1);  
00006   return vec;
00007 }
00008 
00009 //=============================================================================
00010 /*! _zrovector/comple operator */
00011 inline _zrovector operator/(const _zrovector& vec, const comple& d)
00012 {VERBOSE_REPORT;
00013   zscal_(vec.l, 1./d, vec.array, 1);
00014   return vec;
00015 }
 All Classes Files Functions Variables Friends