8 std::cerr <<
"These matrix and vector can not make a product." << std::endl
9 <<
"Your input was (" << mat.
m <<
"x" << mat.
n <<
") * (" << vec.
l <<
")." << std::endl;
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->i) += it->v*vec(it->j);
Real Double-precision General Sparse Matrix Class.
std::vector< dcomponent > data
matrix data
CPPL_INT n
matrix column size
_dcovector operator*(const dgsmatrix &mat, const dcovector &vec)
Real Double-precision Column Vector Class.
(DO NOT USE) Smart-temporary Real Double-precision Column Vector Class
_dcovector _(dcovector &vec)
CPPL_INT m
matrix row size