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

Go to the source code of this file.

Functions

_drovector operator* (const _drovector &vec, const _dgsmatrix &mat)

Function Documentation

_drovector operator* ( const _drovector vec,
const _dgsmatrix mat 
) [inline]

_drovector*_dgsmatrix operator

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

References _(), _dgsmatrix::data, _dgsmatrix::destroy(), _drovector::destroy(), _drovector::l, _dgsmatrix::m, _dgsmatrix::n, and drovector::zero().

{VERBOSE_REPORT;
#ifdef  CPPL_DEBUG
  if(vec.l!=mat.m){
    ERROR_REPORT;
    std::cerr << "These vector and matrix can not make a product." << std::endl
              << "Your input was (" << vec.l << ") * (" << mat.m << "x" << mat.n << ")." << std::endl;
    exit(1);
  }
#endif//CPPL_DEBUG
  
  drovector newvec(mat.n);
  newvec.zero();
  
  for(std::vector<dcomponent>::const_iterator it=mat.data.begin(); it!=mat.data.end(); it++){
    newvec(it->j) += vec(it->i)*it->v;
  }
  
  vec.destroy();
  mat.destroy();
  return _(newvec);
}
 All Classes Files Functions Variables Friends