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

Go to the source code of this file.

Functions

_zgematrix operator* (const comple &d, const _zgematrix &mat)
 

Function Documentation

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

comple*_zgematrix operator

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

References _zgematrix::array, _zgematrix::m, and _zgematrix::n.

4 {CPPL_VERBOSE_REPORT;
5  CPPL_INT size =mat.m*mat.n;
6  CPPL_INT inc =1;
7  zscal_(&size, &d, mat.array, &inc);
8  return mat;
9 }
CPPL_INT m
matrix row size
Definition: _zgematrix.hpp:9
comple * array
1D array to store matrix data
Definition: _zgematrix.hpp:11
CPPL_INT n
matrix column size
Definition: _zgematrix.hpp:10