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