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