6 std::cerr <<
"# [MARK] operator*(const _zgbmatrix&, const _zcovector&)"
12 std::cerr <<
"[ERROR] operator*(const _zgbmatrix&, const _zcovector&)"
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 zgbmv_(
'N', mat.
M, mat.
N, mat.
KL, mat.
KU, std::complex<double>(1.0,0.0), mat.
Array,
23 mat.
KL+mat.
KU+1, vec.
Array, 1, std::complex<double>(0.0,0.0), newvec.
array, 1 );
std::complex< double > * Array
1D Array to store vector data
Definition: _zcovector.hpp:8
long N
matrix column size
Definition: _zgbmatrix.hpp:8
std::complex< double > *const & array
1D array to store vector data (readable)
Definition: zcovector.hpp:13
void destroy() const
Definition: _zgbmatrix-misc.hpp:3
std::complex< double > * Array
1D Array to store matrix data
Definition: _zgbmatrix.hpp:11
void destroy() const
Definition: _zcovector-misc.hpp:3
long KU
upper band width
Definition: _zgbmatrix.hpp:10
friend _zrovector operator*(const zrovector &, const zgematrix &)
Definition: zrovector-zgematrix.hpp:3
long M
matrix row size
Definition: _zgbmatrix.hpp:7
(DO NOT USE) Smart-temporary Complex Double-precision General Band Matrix Class
Definition: _zgbmatrix.hpp:3
Complex Double-precision Column Vector Class.
Definition: zcovector.hpp:3
(DO NOT USE) Smart-temporary Complex Double-precision Column Vector Class
Definition: _zcovector.hpp:3
long KL
lower band width
Definition: _zgbmatrix.hpp:9
long L
vector size
Definition: _zcovector.hpp:7