6 std::cerr <<
"# [MARK] operator*(const zrovector&, const _zgematrix&)"
12 std::cerr <<
"[ERROR] operator*(const zrovector&, const _zgematrix&)"
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 zgemv_(
'T', mat.
M, mat.
N, std::complex<double>(1.0,0.0), mat.
Array, mat.
M,
24 vec.Array, 1, std::complex<double>(0.0,0.0), newvec.
array, 1 );
long N
matrix column size
Definition: _zgematrix.hpp:8
Complex Double-precision Row Vector Class.
Definition: zrovector.hpp:3
(DO NOT USE) Smart-temporary Complex Double-precision Row Vector Class
Definition: _zrovector.hpp:3
(DO NOT USE) Smart-temporary Complex Double-precision General Dence Matrix Class
Definition: _zgematrix.hpp:3
void destroy() const
Definition: _zgematrix-misc.hpp:3
std::complex< double > * Array
1D Array to store matrix data
Definition: _zgematrix.hpp:9
friend _zrovector operator*(const zrovector &, const zgematrix &)
Definition: zrovector-zgematrix.hpp:3
long M
matrix row size
Definition: _zgematrix.hpp:7
std::complex< double > *const & array
1D array to store vector data (readable)
Definition: zrovector.hpp:13