CPPLapack
 All Classes Files Functions Variables Friends Pages
_drovector-_dgsmatrix.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! _drovector*_dgsmatrix operator */
3 inline _drovector operator*(const _drovector& vec, const _dgsmatrix& mat)
4 {CPPL_VERBOSE_REPORT;
5 #ifdef CPPL_DEBUG
6  if(vec.l!=mat.m){
7  ERROR_REPORT;
8  std::cerr << "These vector and matrix can not make a product." << std::endl
9  << "Your input was (" << vec.l << ") * (" << mat.m << "x" << mat.n << ")." << std::endl;
10  exit(1);
11  }
12 #endif//CPPL_DEBUG
13 
14  drovector newvec(mat.n);
15  newvec.zero();
16 
17  const std::vector<dcomponent>::const_iterator mat_data_end =mat.data.end();
18  for(std::vector<dcomponent>::const_iterator it=mat.data.begin(); it!=mat_data_end; it++){
19  newvec(it->j) += vec(it->i)*it->v;
20  }
21 
22  vec.destroy();
23  mat.destroy();
24  return _(newvec);
25 }
CPPL_INT n
matrix column size
Definition: _dgsmatrix.hpp:10
CPPL_INT l
vector size
Definition: _drovector.hpp:9
void destroy() const
(DO NOT USE) Smart-temporary Real Double-precision General Sparse Matrix Class
Definition: _dgsmatrix.hpp:3
Real Double-precision Row Vector Class.
Definition: drovector.hpp:3
CPPL_INT m
matrix row size
Definition: _dgsmatrix.hpp:9
void destroy() const
drovector & zero()
(DO NOT USE) Smart-temporary Real Double-precision Row Vector Class
Definition: _drovector.hpp:3
std::vector< dcomponent > data
matrix data
Definition: _dgsmatrix.hpp:11
_drovector operator*(const _drovector &vec, const _dgsmatrix &mat)
_dcovector _(dcovector &vec)