6 std::cerr <<
"# [MARK] operator*(const _drovector&, const dgbmatrix&)"
12 std::cerr <<
"[ERROR] operator*(const _drovector&, const dgbmatrix&)"
14 <<
"These vector and matrix can not make a product."
16 <<
"Your input was (" << vec.
L <<
") * ("
17 << mat.M <<
"x" << mat.N <<
")." << std::endl;
23 dgbmv_(
'T', mat.M, mat.N, mat.KL, mat.KU, 1.0,
24 mat.Array, mat.KL+mat.KU+1, vec.
Array, 1, 0.0, newvec.
array, 1 );
void destroy() const
Definition: _drovector-misc.hpp:3
Real Double-precision Row Vector Class.
Definition: drovector.hpp:3
(DO NOT USE) Smart-temporary Real Double-precision Row Vector Class
Definition: _drovector.hpp:3
Real Double-precision General Band Matrix Class.
Definition: dgbmatrix.hpp:3
friend _drovector operator*(const drovector &, const dgematrix &)
Definition: drovector-dgematrix.hpp:3
long L
vector size
Definition: _drovector.hpp:7
double * Array
1D Array to store vector data
Definition: _drovector.hpp:8
double *const & array
1D array to store vector data (readable)
Definition: drovector.hpp:13