CPPLapack
 All Classes Files Functions Variables Friends
Functions
_dssmatrix-dcovector.hpp File Reference

Go to the source code of this file.

Functions

_dcovector operator* (const _dssmatrix &mat, const dcovector &vec)

Function Documentation

_dcovector operator* ( const _dssmatrix mat,
const dcovector vec 
) [inline]

_dssmatrix*dcovector operator

Definition at line 3 of file _dssmatrix-dcovector.hpp.

References _(), _dssmatrix::data, _dssmatrix::destroy(), dcovector::l, _dssmatrix::n, and dcovector::zero().

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