8     std::cerr << 
"These matrix and vector can not make a product." << std::endl
 
    9               << 
"Your input was (" << mat.
n << 
"x" << mat.
n << 
") * (" << vec.
l << 
")." << std::endl;
 
   20   dsymv_( &uplo, &mat.
n, &alpha, mat.
array, &mat.
n, vec.
array, &inc, &beta, newvec.
array, &inc );
 
double * array
1D array to store vector data 
Real Double-precision Symmetric Matrix Class [l-type (UPLO=l) Strage]. 
CPPL_INT n
matrix column size 
_dcovector operator*(const dsymatrix &mat, const dcovector &vec)
Real Double-precision Column Vector Class. 
double * array
1D array to store matrix data 
(DO NOT USE) Smart-temporary Real Double-precision Column Vector Class 
_dcovector _(dcovector &vec)