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