6 std::cerr <<
"# [MARK] operator*(const drovector&, const dsymatrix&)"
12 std::cerr <<
"[ERROR] operator*(const drovector&, const dsymatrix&)"
14 <<
"These vector and matrix can not make a product."
16 <<
"Your input was (" << vec.L <<
") * ("
17 << mat.N <<
"x" << mat.N <<
")." << std::endl;
23 dsymv_(
'L', mat.N, 1.0, mat.Array, mat.N,
24 vec.Array, 1, 0.0, newvec.
array, 1 );
Real Double-precision Symmetric Matrix Class [L-type (UPLO=L) Strage].
Definition: dsymatrix.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
friend _drovector operator*(const drovector &, const dgematrix &)
Definition: drovector-dgematrix.hpp:3
double *const & array
1D array to store vector data (readable)
Definition: drovector.hpp:13