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;
 
   20   dgemv_( &trans, &mat.
m, &mat.
n, &alpha, mat.
array, &mat.
m, vec.
array, &inc, &beta, newvec.
array, &inc );
 
double * array
1D array to store vector data 
Real Double-precision Row Vector Class. 
CPPL_INT m
matrix row size 
double * array
1D array to store matrix data 
_drovector operator*(const drovector &vec, const _dgematrix &mat)
(DO NOT USE) Smart-temporary Real Double-precision Row Vector Class 
(DO NOT USE) Smart-temporary Real Double-precision General Dence Matrix Class 
CPPL_INT n
matrix column size 
_dcovector _(dcovector &vec)