CPPLapack
 All Classes Files Functions Variables Friends Pages
Functions
double-_dgsmatrix.hpp File Reference

Go to the source code of this file.

Functions

_dgsmatrix operator* (const double &d, const _dgsmatrix &mat)
 

Function Documentation

_dgsmatrix operator* ( const double &  d,
const _dgsmatrix mat 
)
inline

double*_dgsmatrix operator

Definition at line 3 of file double-_dgsmatrix.hpp.

References _dgsmatrix::data.

4 {CPPL_VERBOSE_REPORT;
5  const std::vector<dcomponent>::iterator mat_data_end =mat.data.end();
6  for(std::vector<dcomponent>::iterator it=mat.data.begin(); it!=mat_data_end; it++){
7  it->v *= d;
8  }
9 
10  return mat;
11 }
std::vector< dcomponent > data
matrix data
Definition: _dgsmatrix.hpp:11