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