CPPLapack
 All Classes Files Functions Variables Friends Pages
Functions
_zgbmatrix-complex.hpp File Reference

Go to the source code of this file.

Functions

_zgbmatrix operator* (const _zgbmatrix &mat, const comple &d)
 
_zgbmatrix operator/ (const _zgbmatrix &mat, const comple &d)
 

Function Documentation

_zgbmatrix operator* ( const _zgbmatrix mat,
const comple &  d 
)
inline

_zgbmatrix*comple operator

Definition at line 3 of file _zgbmatrix-complex.hpp.

References _zgbmatrix::array, _zgbmatrix::kl, _zgbmatrix::ku, and _zgbmatrix::n.

4 {CPPL_VERBOSE_REPORT;
5  CPPL_INT size =(mat.kl+mat.ku+1)*mat.n;
6  CPPL_INT inc =1;
7  zscal_(&size, &d, mat.array, &inc);
8  return mat;
9 }
CPPL_INT ku
upper band width
Definition: _zgbmatrix.hpp:12
CPPL_INT kl
lower band width
Definition: _zgbmatrix.hpp:11
comple * array
1D array to store matrix data
Definition: _zgbmatrix.hpp:13
CPPL_INT n
matrix column size
Definition: _zgbmatrix.hpp:10
_zgbmatrix operator/ ( const _zgbmatrix mat,
const comple &  d 
)
inline

_zgbmatrix/comple operator

Definition at line 13 of file _zgbmatrix-complex.hpp.

References _zgbmatrix::array, _zgbmatrix::kl, _zgbmatrix::ku, and _zgbmatrix::n.

14 {CPPL_VERBOSE_REPORT;
15  CPPL_INT size =(mat.kl+mat.ku+1)*mat.n;
16  comple dinv =1./d;
17  CPPL_INT inc =1;
18  zscal_(&size, &dinv, mat.array, &inc);
19  return mat;
20 }
CPPL_INT ku
upper band width
Definition: _zgbmatrix.hpp:12
CPPL_INT kl
lower band width
Definition: _zgbmatrix.hpp:11
comple * array
1D array to store matrix data
Definition: _zgbmatrix.hpp:13
CPPL_INT n
matrix column size
Definition: _zgbmatrix.hpp:10