Go to the source code of this file.
_zrovector*_zgbmatrix operator
Definition at line 3 of file _zrovector-_zgbmatrix.hpp.
References _(), _zrovector::array, zrovector::array, _zgbmatrix::array, _zgbmatrix::destroy(), _zrovector::destroy(), _zgbmatrix::kl, _zgbmatrix::ku, _zrovector::l, _zgbmatrix::m, and _zgbmatrix::n.
8 std::cerr <<
"These vector and matrix can not make a product." << std::endl
9 <<
"Your input was (" << vec.
l <<
") * (" << mat.
m <<
"x" << mat.
n <<
")." << std::endl;
16 comple alpha =comple(1.,0.);
17 CPPL_INT lda =mat.
kl+mat.
ku+1;
19 comple beta =comple(0.,0.);
21 zgbmv_( &trans, &mat.
m, &mat.
n, &mat.
kl, &mat.
ku, &alpha, mat.
array, &lda, vec.
array, &inc, &beta, newvec.array, &inc );
CPPL_INT ku
upper band width
CPPL_INT kl
lower band width
Complex Double-precision Row Vector Class.
comple * array
1D array to store vector data
CPPL_INT m
matrix row size
comple * array
1D array to store matrix data
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)